diff --git a/.forgejo/workflows/check.yml b/.forgejo/workflows/check.yml new file mode 100644 index 0000000..2f84307 --- /dev/null +++ b/.forgejo/workflows/check.yml @@ -0,0 +1,14 @@ +on: [push] +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: https://code.forgejo.org/actions/checkout@v3 + - uses: https://github.com/cachix/install-nix-action@v22 + with: + install_url: https://nixos.org/nix/install + extra_nix_config: | + auto-optimise-store = true + access-tokens = ${{ secrets.FORGEJO_TOKEN }} + experimental-features = nix-command flakes + - run: nix flake check \ No newline at end of file diff --git a/.forgejo/workflows/flake-lock-update.yml b/.forgejo/workflows/flake-lock-update.yml new file mode 100644 index 0000000..e69de29 diff --git a/.forgejo/workflows/fmt.yml b/.forgejo/workflows/fmt.yml new file mode 100644 index 0000000..e69de29 diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml deleted file mode 100644 index e883d77..0000000 --- a/.forgejo/workflows/test.yaml +++ /dev/null @@ -1,6 +0,0 @@ -on: [push] -jobs: - test: - runs-on: ubuntu-latest - steps: - - run: echo All Good \ No newline at end of file