From 6ddbcc5618ed033d1df50e75926910f0376d6212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20=E2=80=9CNiols=E2=80=9D=20Jeannerod?= Date: Mon, 30 Sep 2024 10:19:01 +0200 Subject: [PATCH] Try native runner --- .forgejo/workflows/test.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml index e731d59..703a83a 100644 --- a/.forgejo/workflows/test.yaml +++ b/.forgejo/workflows/test.yaml @@ -1,13 +1,11 @@ on: [push] jobs: test: - runs-on: nix.2.18.7 + runs-on: native steps: - - run: | - cat <>/etc/nix/nix.conf - experimental-features = nix-command flakes - EOF - nix profile install nixpkgs#nodejs + - run: nix --version + - run: pwd + - run: ls - uses: actions/checkout@v4