-
Notifications
You must be signed in to change notification settings - Fork 16
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 #106 from smarie/feature/105_nox_cleanup
Feature/105 nox cleanup
- Loading branch information
Showing
5 changed files
with
224 additions
and
904 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 |
---|---|---|
|
@@ -36,7 +36,7 @@ jobs: | |
|
||
- name: List 'tests' nox sessions and required python versions | ||
id: set-matrix | ||
run: echo "::set-output name=matrix::$(nox -s gha_list -- -s tests -v)" | ||
run: echo "::set-output name=matrix::$(nox --json -l -s tests -v)" | ||
|
||
outputs: | ||
matrix: ${{ steps.set-matrix.outputs.matrix }} # save nox sessions list to outputs | ||
|
@@ -60,7 +60,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Install python ${{ matrix.nox_session.python }} for tests | ||
uses: MatteoH2O1999/setup-python@v3.0.0 # actions/[email protected] | ||
uses: MatteoH2O1999/setup-python@v3.2.1 # actions/[email protected] | ||
id: set-py | ||
with: | ||
python-version: ${{ matrix.nox_session.python }} | ||
|
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,24 @@ | ||
name: GitHub Actions Version Updater | ||
|
||
# Controls when the action will run. | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Automatically run on every first day of the month | ||
- cron: '0 0 1 * *' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# [Required] Access token with `workflow` scope. | ||
token: ${{ secrets.WORKFLOW_SECRET }} | ||
|
||
- name: Run GitHub Actions Version Updater | ||
uses: saadmk11/[email protected] | ||
with: | ||
# [Required] Access token with `workflow` scope. | ||
token: ${{ secrets.WORKFLOW_SECRET }} |
Oops, something went wrong.