Skip to content

Update test.yml

Update test.yml #13

Workflow file for this run

# This workflow will install Python dependencies and run tests for pymrtd
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10.3
uses: actions/setup-python@v3
with:
python-version: 3.11.5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.txt
- name: Test with pytest
run: |
pytest tests