Skip to content

feat: add a devcontainer for codespace development #96

feat: add a devcontainer for codespace development

feat: add a devcontainer for codespace development #96

Workflow file for this run

name: Build
on:
- push
- workflow_dispatch
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- uses: pre-commit/action@v3.0.0
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "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 dependencies
run: pip install .[test]
- name: test with pytest
run: pytest --color=yes --cov --cov-report=xml tests
- name: mypy checks
run: |
pip3 install mypy
mypy --ignore-missing-imports --install-types --non-interactive pygadm
- name: coverage
run: coverage xml
- name: codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true