build: send Ack if HEAD failed to fetch #304
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: | |
push: | |
branches: [released] | |
pull_request: | |
jobs: | |
checkPhase: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v17 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Set up git | |
run: | | |
git config --global user.email "ofborg@example.com" | |
git config --global user.name "ofborg" | |
- name: checkPhase | |
run: nix-shell --pure --run "cargo test" | |
nix-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Nix | |
uses: cachix/install-nix-action@v17 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: nix-build | |
run: nix-build -A ofborg.rs -A ofborg.php |