mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2025-01-21 18:31:12 +00:00
Add GitHub Actions workflow for CI
This commit is contained in:
parent
6adf8eb88d
commit
3a805c3e56
@ -8,3 +8,7 @@ insert_final_newline = true
|
||||
[*.rst]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
|
||||
[*.yml]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
21
.github/workflows/ci.yml
vendored
Normal file
21
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
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
|
Loading…
x
Reference in New Issue
Block a user