Fix vscode golang extension name #14
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 & Test (nix)" | |
# FIXME: This build is too large and runs out of space | |
# on github runners. | |
# on: | |
# pull_request: | |
# push: | |
# branches: | |
# - master | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Run the Magic Nix Cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- name: Check | |
run: | | |
nix flake check |