dosage/.github/workflows/test.yml

44 lines
1.1 KiB
YAML
Raw Normal View History

2021-04-30 19:47:21 +00:00
name: Tests (tox)
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
2022-02-14 22:51:03 +00:00
python-version: ["3.7", "3.8", "3.9", "3.10"]
2021-04-30 19:47:21 +00:00
steps:
- uses: actions/checkout@v3
2021-04-30 19:47:21 +00:00
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
2021-04-30 19:47:21 +00:00
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install tox tox-gh-actions
- name: Test with tox
run: tox
2021-10-10 16:56:11 +00:00
if: ${{ matrix.python-version != '3.10' }}
- name: Test with tox (and upload coverage)
uses: paambaati/codeclimate-action@v3.2.0
2021-10-10 16:56:11 +00:00
if: ${{ matrix.python-version == '3.10' }}
env:
CC_TEST_REPORTER_ID: 2a411f596959fc32f5d73f3ba7cef8cc4d5733299d742dbfc97fd6c190b9010c
with:
coverageCommand: tox
coverageLocations: |
${{ github.workspace }}/.tox/reports/*/coverage.xml:coverage.py
prefix: ${{ github.workspace }}/.tox/py39/lib/python3.9/site-packages
2021-05-01 09:27:05 +00:00
- uses: codecov/codecov-action@v3
2021-05-01 09:27:05 +00:00
with:
directory: '.tox/reports'