matchy/.github/workflows/test.yml
Marc Di Luzio 4ac4596e18
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
Test / build (push) Has been cancelled
Remove the now not needed release branch push
2024-08-14 16:58:01 +01:00

23 lines
No EOL
471 B
YAML

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: |
python scripts/test.py