Skip to content

update libs

update libs #7

Workflow file for this run

name: Test
on:
push:
branches:
- "master"
paths-ignore:
- "**.md"
pull_request:
branches:
- "**"
paths-ignore:
- "**.md"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install
- name: Lint
run: make lint
- name: Test
run: make coverage
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false