typo: string concat not list concat #52
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 & test nickel-kubernetes" | |
on: | |
- pull_request | |
- push | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: cachix/install-nix-action@v13 | |
with: | |
install_url: https://nixos-nix-install-tests.cachix.org/serve/i6laym9jw3wg9mw6ncyrk6gjx4l34vvx/install | |
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve' | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
- run: nix build | |
# Fix the following: | |
# error: a 'x86_64-darwin' with features {} is required to build '/nix/store/hni030gd4i5sras4q6zgyyihd0zfqb59-channel-rust-stable.toml.drv', | |
# but I am a 'x86_64-linux' with features {benchmark, big-parallel, nixos-test, recursive-nix} | |
# - run: nix flake check |