mirror of
1
0
Fork 0
dotbot/.github/workflows/build.yml

53 lines
1.4 KiB
YAML
Raw Permalink Normal View History

2020-12-18 14:34:28 -05:00
name: CI
on:
push:
2020-12-26 05:01:29 -05:00
pull_request:
2020-12-18 14:34:28 -05:00
schedule:
- cron: '0 8 * * 6'
jobs:
test:
2022-05-12 17:30:44 -04:00
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
2020-12-18 14:34:28 -05:00
strategy:
2022-05-12 17:30:44 -04:00
fail-fast: false
2020-12-18 14:34:28 -05:00
matrix:
os: ["ubuntu-20.04", "macos-latest"]
python: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9"]
2022-05-12 17:30:44 -04:00
include:
- os: "windows-latest"
python: "3.8"
- os: "windows-latest"
python: "3.9"
- os: "windows-latest"
python: "3.10"
2023-09-09 20:53:07 -04:00
- os: "windows-latest"
python: "3.11"
- os: "windows-latest"
python: "3.12"
2022-05-12 17:30:44 -04:00
runs-on: ${{ matrix.os }}
name: "Test: Python ${{ matrix.python }} on ${{ matrix.os }}"
2020-12-18 14:34:28 -05:00
steps:
2022-05-12 17:30:44 -04:00
- uses: actions/checkout@v3
2020-12-18 14:34:28 -05:00
with:
submodules: recursive
2022-12-11 10:49:55 -05:00
- uses: actions/setup-python@v4
2020-12-18 14:34:28 -05:00
with:
python-version: ${{ matrix.python }}
allow-prereleases: true
2022-05-12 17:30:44 -04:00
- name: "Install dependencies"
run: |
2022-05-16 09:53:24 -04:00
python -m pip install --upgrade pip setuptools
python -m pip install tox tox-gh-actions
2022-05-12 17:30:44 -04:00
- name: "Run tests"
run: |
python -m tox
2022-12-17 15:05:04 -05:00
python -m tox -e coverage_report
- uses: codecov/codecov-action@v3
2022-01-30 18:48:30 -05:00
fmt:
name: Format
2022-12-11 10:49:55 -05:00
runs-on: ubuntu-22.04
2022-01-30 18:48:30 -05:00
steps:
2022-12-11 10:49:55 -05:00
- uses: actions/checkout@v3
2022-01-30 18:48:30 -05:00
- uses: psf/black@stable
- uses: isort/isort-action@v1