Skip to content

Commit

Permalink
docs: recipe for GHA generate (#696)
Browse files Browse the repository at this point in the history
* docs: recipe for GHA generate

Signed-off-by: Henry Schreiner <[email protected]>

* Update docs/cookbook.rst

---------

Signed-off-by: Henry Schreiner <[email protected]>
  • Loading branch information
henryiii committed Jun 23, 2023
1 parent 720f1ea commit 5e1f0c0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/cookbook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,35 @@ Even more so with a sprinkling of Nox:
session.run("git", "push", "--tags", external=True)
Now a simple ``nox -s release -- patch`` will automate your release (provided you have Bump2Version set up to change your files). This is especially powerful if you have a CI/CD pipeline set up!


Generating a matrix with GitHub Actions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Nox knows what sessions it needs to run. Why not tell GitHub Actions what jobs to run dynamically? Using the ``--json`` flag and a bit of json processing, it's easy:

.. code-block:: yaml
jobs:
generate-jobs:
runs-on: ubuntu-latest
outputs:
session: ${{ steps.set-matrix.outputs.session }}
steps:
- uses: actions/checkout@v3
- uses: wntrblm/nox@main
- id: set-matrix
shell: bash
run: echo session=$(nox --json -l | jq -c '[.[].session]') | tee --append $GITHUB_OUTPUT
checks:
name: Session ${{ matrix.session }}
needs: [generate-jobs]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
session: ${{ fromJson(needs.generate-jobs.outputs.session) }}
steps:
- uses: actions/checkout@v3
- uses: wntrblm/nox@main
- run: nox -s '${{ matrix.session }}'

0 comments on commit 5e1f0c0

Please sign in to comment.