about summary refs log blame commit diff
path: root/tools/nixery/.github/workflows/build-and-test.yaml
blob: d3f258ffaac44d383c3ad464f9636721248a62f7 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                              
    
                                                                                                              



                          




                                           
                                          

                                    

                           
                          
                                      

                                        
# Build Nixery, spin up an instance and pull an image from it.
name: "Build and test Nixery"
on:
  push:
    branches:
      - master
  pull_request: {}
env:
  NIX_PATH: "nixpkgs=https://github.com/NixOS/nixpkgs/archive/4263ba5e133cc3fc699c1152ab5ee46ef668e675.tar.gz"
jobs:
  build-and-test:
    runs-on: ubuntu-latest
    steps:
      - name: Install Nix
        uses: cachix/install-nix-action@v13
      - name: Checkout
        uses: actions/checkout@v2.3.4
      - name: Prepare environment
        run: nix-env -f '<nixpkgs>' -iA go
      - name: Check formatting
        run: "test -z $(gofmt -l .)"
      - name: Run `go vet`
        run: "go vet ./..."
      - name: Build Nixery
        run: "nix-build --no-out-link"
      - name: Run integration test
        run: scripts/integration-test.sh