python-rsrcfork/.github/workflows/ci.yml

18 lines
446 B
YAML
Raw Normal View History

2020-01-19 18:36:53 +00:00
on: [pull_request, push]
2019-12-30 00:59:05 +00:00
jobs:
test:
strategy:
matrix:
platform: [macos-latest, ubuntu-20.04, windows-latest]
2019-12-30 00:59:05 +00:00
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
2019-12-30 00:59:05 +00:00
with:
python-version: "3.6"
- uses: actions/setup-python@v4
with:
2023-02-14 20:09:17 +00:00
python-version: "3.11"
2019-12-30 00:59:05 +00:00
- run: python -m pip install --upgrade tox
- run: tox