Skip to content

adding CI workflow for linting and tests #2

adding CI workflow for linting and tests

adding CI workflow for linting and tests #2

Workflow file for this run

name: CI
on: [push]
jobs:
lint_test_and_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies
run: make update
- name: linting
run: make style
- name: tests
run: make test