build(deps): bump cachix/install-nix-action from 27 to 28 #17
Workflow file for this run
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
name: Test | |
on: | |
pull_request: | |
branches: | |
- mesosphere | |
jobs: | |
test: | |
name: run-tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Nix on self-hosted ARC runners | |
uses: cachix/install-nix-action@V28 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install devbox | |
uses: jetify-com/devbox-install-action@v0.11.0 | |
with: | |
enable-cache: false | |
skip-nix-installation: true | |
- name: Granting private modules access | |
run: | | |
git config --global url."https://${{ secrets.MESOSPHERECI_USER_TOKEN }}:x-oauth-basic@github.com/".insteadOf "https://github.com/" | |
- run: devbox run -- make test |