fix: xpc error #120
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: "Build" | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out repository | |
uses: actions/[email protected] | |
- name: Install Nix | |
uses: cachix/install-nix-action@v23 | |
- name: Setup binary cache | |
uses: cachix/cachix-action@v12 | |
with: | |
name: stackrox | |
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
- name: Build dev environment | |
run: nix develop |