mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2025-01-08 21:35:20 +00:00
22 lines
563 B
YAML
22 lines
563 B
YAML
on: push
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
platform: [macos-latest, ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: "3.6"
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: "3.7"
|
|
- uses: actions/setup-python@v1
|
|
with:
|
|
python-version: "3.8"
|
|
- run: python -m pip install --upgrade pip
|
|
- run: python -m pip install --upgrade tox
|
|
- run: tox
|