Skip to content

Chore | Migrate to GitHub actions (#17) #7

Chore | Migrate to GitHub actions (#17)

Chore | Migrate to GitHub actions (#17) #7

Workflow file for this run

name: python
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: python -m pip install --upgrade pip poetry
- name: Install poetry
run: poetry install
- name: Run linter
run: make lint
- name: Run tests
run: make tests
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3