Skip to content

Change project name to openalk, update readme, switch to pyproject.toml for project configuration #5

Change project name to openalk, update readme, switch to pyproject.toml for project configuration

Change project name to openalk, update readme, switch to pyproject.toml for project configuration #5

Workflow file for this run

name: Tests
on:
pull_request:
jobs:
run_tests:
name: Run pytest
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install python
uses: actions/setup-python@v2
with:
python-version: 3.11.x
- name: Install dependencies
run: |
pip3 install --upgrade pip
pip3 install -r requirements.txt
- name: Run tests
run: |
python -m pytest