Skip to content

Version 0.1.2.

Version 0.1.2. #15

Workflow file for this run

name: Lint and test
on:
workflow_dispatch:
push:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install dependencies ☕️
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_dev.txt
- name: Lint 🔍
run: ./tests/lint.sh
pypi:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup python 🐍
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies ☕️
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_dev.txt
python -m pip install twine
- name: Check bundling 📦
run: python setup.py sdist
- name: Check setup 🚦
run: twine check "dist/$( python setup.py --fullname ).tar.gz"
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["36", "37", "38", "39", "310"]
name: test (python ${{ matrix.python }})
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Install dependencies ☕️
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_dev.txt
- name: Test 🎢
run: ./tests/test.sh
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout ⬇️
uses: actions/checkout@v3
with:
persist-credentials: false
submodules: recursive
- name: Install dependencies ☕️
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements_dev.txt
- name: Run coverage test 🎢
run: ./tests/coverage.sh
- name: Upload report 🔝
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
fail_ci_if_error: false