-
Notifications
You must be signed in to change notification settings - Fork 2
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 #191 from globus/release/0.20.0
Release v0.20.0
- Loading branch information
Showing
36 changed files
with
372 additions
and
1,811 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,69 @@ | ||
name: "🧪 Test" | ||
|
||
on: | ||
pull_request: null | ||
push: | ||
branches: | ||
- "main" | ||
- "production" | ||
|
||
jobs: | ||
test: | ||
name: "${{ matrix.name }}" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# These names establish the number of jobs that will run, | ||
# and the actual job configurations will be added by matching "name" keys | ||
# in the "include" section below. | ||
name: | ||
- "Linux" | ||
- "macOS" | ||
- "Windows" | ||
- "Quality" | ||
|
||
# The nested list in this single-item list will be added to each job above. | ||
cache-key-hash-files: | ||
- | ||
- "pyproject.toml" | ||
- "requirements/*/requirements.txt" | ||
|
||
include: | ||
- name: "Linux" | ||
runner: "ubuntu-latest" | ||
cpythons: | ||
- "3.8" | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
tox-environments-from-pythons: true | ||
tox-post-environments: | ||
- "py3.8-minimum_flask" | ||
- "py3.12-minimum_flask" | ||
|
||
- name: "macOS" | ||
runner: "macos-latest" | ||
cpythons: | ||
- "3.12" | ||
tox-environments-from-pythons: true | ||
|
||
- name: "Windows" | ||
runner: "windows-latest" | ||
cpythons: | ||
- "3.12" | ||
tox-environments-from-pythons: true | ||
|
||
- name: "Quality" | ||
runner: "ubuntu-latest" | ||
cpythons: | ||
- "3.12" # This must match the Read the Docs interpreter version. | ||
tox-environments: | ||
- "docs" | ||
- "mypy" | ||
cache-paths: | ||
- ".mypy_cache/" | ||
|
||
uses: "globus/workflows/.github/workflows/tox.yaml@04b4abd6fcb9b4be7263bc9d6994ae2ada220739" # v1.1 | ||
with: | ||
config: "${{ toJSON(matrix) }}" |
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
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,20 @@ | ||
.. | ||
De-dent what you need. | ||
Delete everything you don't. | ||
{% for category in config.categories %} | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
{{ category }} | ||
{{ config.rst_header_chars[1] * (category|length) }} | ||
|
||
* Describe your "{{ category }}" change here. EDIT ME! | ||
|
||
{%- if category.title() == "Breaking Changes" %} | ||
|
||
Document what steps must be taken to account for the breaking change. | ||
If there are multiple breaking changes, | ||
list them in separate bullet points or create additional changelog fragments. | ||
|
||
{%- endif %} | ||
{% endfor %} |
Oops, something went wrong.