Skip to content

Configs

Configs #1

Workflow file for this run

# Runs test related tasks.
name: test
on:
push:
branches: [ master, main, dev ]
pull_request:
branches: [ master, main, dev ]
jobs:
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Pytest
run: |
pytest tests