Skip to content

Update Test CI triggers #7

Update Test CI triggers

Update Test CI triggers #7

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test_and_publish:
runs-on: ubuntu-latest
steps:
- name: Setup environment
uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- run: poetry install
- name: Lint check
run: make lint_ci
- name: Run tests
run: make test