Skip to content

Update Adyen/release-automation-action action to v1.4.0 #287

Update Adyen/release-automation-action action to v1.4.0

Update Adyen/release-automation-action action to v1.4.0 #287

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
pull_request:
branches:
- main
merge_group:
workflow_dispatch: {}
workflow_call: {} # to be invoked by pypipublish.yml
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.7', '3.8']
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
sudo apt-get update
sudo apt install libcurl4-openssl-dev
- name: Test with tox
run: tox