From b83f28df91fe8cc9d2ea9d2a7cf0130d21d994b3 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Sun, 23 Apr 2023 18:15:00 -0600 Subject: [PATCH] try docker --- .gitea/workflows/check-flake.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/check-flake.yaml b/.gitea/workflows/check-flake.yaml index b693baf..1c41452 100644 --- a/.gitea/workflows/check-flake.yaml +++ b/.gitea/workflows/check-flake.yaml @@ -2,11 +2,17 @@ name: Check Flake on: [push] jobs: check-flake: - runs-on: Nix + runs-on: ubuntu-latest + container: + image: ubuntu:latest steps: + - name: Install Nix + uses: https://github.com/cachix/install-nix-action@v20 + - name: Checkout the repository uses: actions/checkout@v3 with: fetch-depth: 0 + - name: Check Flake run: nix flake check \ No newline at end of file