From 5f2367ccfce346252503aa5758cb0a7bb0524029 Mon Sep 17 00:00:00 2001 From: semickolon Date: Fri, 5 Jan 2024 21:32:56 +0800 Subject: [PATCH] Try GitHub Actions --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..13140ab --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build +run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install Nix + uses: cachix/install-nix-action@v17 + - name: Compile + run: nix develop --command python fak.py compile + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: central.ihx + path: build/central.ihx