Bump cachix/install-nix-action from 30 to 31 #965
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: "CI" | |
on: | |
pull_request: | |
push: | |
jobs: | |
shellcheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: shellcheck tests/*.sh | |
nix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v31 | |
- run: nix-build -A hydraJobs.release | |
ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: get toolchain version | |
run: | | |
c++ --version | |
ld --version | |
autoconf --version | |
- run: | | |
./bootstrap.sh | |
mkdir build && cd build | |
../configure --with-asan --with-ubsan | |
make -j$(nproc) check |