diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index cc7ba275..336b1321 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -10,17 +10,13 @@ on: jobs: check-pre-commit: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix-build -A tests check-data-model: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix-shell --run 'nix-unit ./deployment/data-model-test.nix' @@ -32,41 +28,31 @@ jobs: - run: nix build .#checks.x86_64-linux.test-mastodon-service -L check-peertube: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.test-peertube-service -L check-panel: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix-build -A tests.panel check-deployment-basic: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.deployment-basic -L check-deployment-cli: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.deployment-cli -L check-deployment-panel: - runs-on: docker - container: - image: nix + runs-on: nix steps: - uses: actions/checkout@v4 - run: nix build .#checks.x86_64-linux.deployment-panel -L