From 6654afc8f3be128b57a80d2f0589490d8d96075a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sun, 24 Dec 2023 20:18:47 +0300 Subject: [PATCH] CI: build package with Go & Nix --- .github/workflows/go.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..006238e --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,32 @@ +name: Build + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build-go: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.21' + - name: Build + run: go build -v ./. + + build-nix: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@main + - name: Nix Magic Cache + uses: DeterminateSystems/magic-nix-cache-action@main + - name: Build with Nix + run: nix build .# -Lv