forked from openkylin/flit
41 lines
878 B
YAML
41 lines
878 B
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: >-
|
|
${{ github.workflow }}-
|
|
${{ github.ref_type }}-
|
|
${{ github.event.pull_request.number || github.sha }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ${{ matrix.platform }}
|
|
strategy:
|
|
matrix:
|
|
platform: ["ubuntu-latest", "windows-latest"]
|
|
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install tox tox-gh-actions codecov
|
|
|
|
- name: Run tests
|
|
run: tox
|
|
|
|
- name: Codecov upload
|
|
run: codecov
|