Skip to content

Merge pull request #14 from EventAccess/renovate/actions-checkout-4.x #11

Merge pull request #14 from EventAccess/renovate/actions-checkout-4.x

Merge pull request #14 from EventAccess/renovate/actions-checkout-4.x #11

Workflow file for this run

name: "Run tests"
on:
push:
jobs:
test:
if: ${{ github.repository_owner == 'EventAccess' }}
strategy:
fail-fast: false
matrix:
py_version: ['3.12']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Git checkout
uses: "actions/[email protected]"
- name: Set up Python ${{ matrix.py_version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.py_version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Run tests
run: bash ./.github/workflows/run-tests.sh