mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-02-02 15:04:18 -06:00
remove outdated check workflow
This commit is contained in:
parent
b38b20a81b
commit
944c4c14bd
1 changed files with 0 additions and 40 deletions
40
.github/workflows/checks.yml
vendored
40
.github/workflows/checks.yml
vendored
|
@ -1,40 +0,0 @@
|
||||||
name: Run Nix Flake Checks
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_call:
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
lockFile:
|
|
||||||
description: "flake.lock file"
|
|
||||||
type: string
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
checks:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- uses: ./.github/actions/clean-disk
|
|
||||||
with:
|
|
||||||
purge-packages: false
|
|
||||||
|
|
||||||
- uses: DeterminateSystems/nix-installer-action@main
|
|
||||||
with:
|
|
||||||
extra-conf: |
|
|
||||||
accept-flake-config = true
|
|
||||||
- uses: DeterminateSystems/magic-nix-cache-action@v8
|
|
||||||
- uses: cachix/cachix-action@v15
|
|
||||||
with:
|
|
||||||
name: daylin
|
|
||||||
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
|
||||||
|
|
||||||
- name: write lock file
|
|
||||||
if: "${{ inputs.lockFile != '' }}"
|
|
||||||
run: |
|
|
||||||
echo '${{ inputs.lockFile }}' > flake.lock
|
|
||||||
git diff
|
|
||||||
|
|
||||||
- name: Build
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
cachix watch-exec daylin -- nix build '.#checks.x86_64-linux.makePackages'
|
|
Loading…
Reference in a new issue