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