Skip to content

modify github actions #24

modify github actions

modify github actions #24

Workflow file for this run

name: Test
on:
push:
pull_request:
types: [opened, synchronize]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10']
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: snok/install-poetry@v1
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install Dependencies
run: poetry install
- name: Lint
run: bash scripts/lint.sh
- name: Test
run: bash scripts/test.sh
- uses: codecov/codecov-action@v3