-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #133 from DontShaveTheYak/develop
Release 0.5.0
- Loading branch information
Showing
22 changed files
with
564 additions
and
502 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
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 |
---|---|---|
|
@@ -3,29 +3,29 @@ name: Tests | |
on: | ||
push: | ||
branches: | ||
- 'master' | ||
- "master" | ||
pull_request: | ||
paths-ignore: | ||
- '.github/workflows/release.yml' | ||
- '.github/workflows/pr_checks.yml' | ||
- ".github/workflows/release.yml" | ||
- ".github/workflows/pr_checks.yml" | ||
|
||
jobs: | ||
single: | ||
runs-on: ubuntu-latest | ||
name: Python 3.9 | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3.1.0 | ||
uses: actions/checkout@v3.4.0 | ||
|
||
- name: Setup Latest Python | ||
uses: actions/setup-python@v4.3.0 | ||
uses: actions/setup-python@v4.5.0 | ||
with: | ||
python-version: 3.9 | ||
architecture: x64 | ||
|
||
- name: Setup Poetry | ||
run: | | ||
pip install poetry==1.1.14 | ||
pip install poetry==1.4.0 | ||
poetry install | ||
- name: Setup requirements | ||
|
@@ -43,6 +43,7 @@ jobs: | |
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
flags: unit | ||
fail_ci_if_error: true | ||
|
||
|
@@ -51,14 +52,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.7', '3.8', '3.10'] # 3.9 is done in the job above | ||
python-version: ["3.7", "3.8", "3.10"] # 3.9 is done in the job above | ||
name: Python ${{ matrix.python-version }} | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v3.1.0 | ||
uses: actions/checkout@v3.4.0 | ||
|
||
- name: Setup Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v4.3.0 | ||
uses: actions/setup-python@v4.5.0 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
|
@@ -67,7 +68,7 @@ jobs: | |
run: pip install nox nox_poetry | ||
|
||
- name: Setup Poetry | ||
run: pip install poetry==1.1.14 | ||
run: pip install poetry==1.4.0 | ||
|
||
- name: Run Tests | ||
run: nox -s tests -p ${{ matrix.python-version }} |
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,2 +1,2 @@ | ||
requests==2.28.1 | ||
requests==2.28.2 | ||
semver==2.13.0 |
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
Oops, something went wrong.