Skip to content

Small changes to get my hands wet #77

Small changes to get my hands wet

Small changes to get my hands wet #77

name: 'Tests Python 3.10'
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
unit_tests_3_10:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- run: pip install --upgrade pip
- run: pip install -r requirements.txt
- run: pytest --github_token=${{ secrets.READ_ACCESS }}