Skip to content

Merge branch 'release/v0.9' into chore/v0.9.7 #1631

Merge branch 'release/v0.9' into chore/v0.9.7

Merge branch 'release/v0.9' into chore/v0.9.7 #1631

Workflow file for this run

name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: install_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: lint
run: make lint
- name: mypy
run: make mypy
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install_system_deps
run: sudo make install_system_deps
- name: install
run: make install
- name: test
run: make test
env:
FTP_PATH: ${{ secrets.FTP_PATH }}
- name: Upload coverage
uses: codecov/codecov-action@v3