1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

Update source/tutorials/continuous-integration-github-actions.rst

Co-authored-by: zimbatm <zimbatm@zimbatm.com>
This commit is contained in:
Domen Kožar 2020-07-07 11:27:40 +02:00 committed by GitHub
parent 65508e2023
commit 4fcc556e3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,6 +67,7 @@ Create ``.github/workflows/test.yml`` with:
# Only needed for private caches # Only needed for private caches
#authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' #authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix-build - run: nix-build
- run: nix-shell --run "echo OK"
Once you commit and push to your GitHub repository, Once you commit and push to your GitHub repository,
you should see status checks appearing on commits and PRs. you should see status checks appearing on commits and PRs.
@ -77,4 +78,4 @@ Going forward
- See `GitHub Actions workflow syntax <https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions>`_ - See `GitHub Actions workflow syntax <https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions>`_
.. - example repo .. - example repo