-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add automatic tests for later Pythons (#83)
* add GitHub Actions * add a badge to boot
- Loading branch information
1 parent
301382f
commit 5cff534
Showing
4 changed files
with
50 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: tox | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 4 | ||
matrix: | ||
python: ["3.8", "3.9", "3.10", "3.11"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Install tox | ||
run: | | ||
python -m pip install --upgrade pip | ||
python -m pip install tox tox-gh-actions | ||
- name: Run tox | ||
run: python -m tox |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
package: | ||
name: seqlog | ||
version: 0.3.31 | ||
|
||
requirements: | ||
host: | ||
- python | ||
- setuptools | ||
|
||
run: | ||
- python | ||
|
||
source: | ||
git_url: http://github.com/tintoy/seqlog.git | ||
|
||
about: | ||
home: http://github.com/tintoy/seqlog | ||
license: MIT | ||
license_file: LICENSE | ||
|
||
package: | ||
name: seqlog | ||
version: 0.5.0 | ||
|
||
requirements: | ||
host: | ||
- python | ||
- setuptools | ||
|
||
run: | ||
- python | ||
|
||
source: | ||
git_url: http://github.com/tintoy/seqlog.git | ||
|
||
about: | ||
home: http://github.com/tintoy/seqlog | ||
license: MIT | ||
license_file: LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters