Skip to content

ableton link as submodule #305

ableton link as submodule

ableton link as submodule #305

Workflow file for this run

name: Nix
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
jobs:
cancel-previous-runs:
runs-on: ubuntu-24.04
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
nix-fmt-check:
needs: cancel-previous-runs
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: nix fmt -- --check ./
nix-build:
needs: cancel-previous-runs
strategy:
matrix:
package: [tidal, tidal-link, tidal-parse]
os: [ubuntu-24.04, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:

Check failure on line 38 in .github/workflows/nix.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/nix.yml

Invalid workflow file

You have an error in your yaml syntax on line 38
submodules: recursive
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-unstable
- run: nix build '.?submodules=1' --print-build-logs --no-update-lock-file .#${{ matrix.package }}