nvim.nix/.github/workflows/check.yml
jiriks74 ed72f266de
All checks were successful
Perform checks / formatting (push) Successful in 1m13s
Perform checks / nix_flake_check (push) Successful in 52s
Perform checks / nix_build (push) Successful in 2m49s
fix(ci): Use full URLs for CI Actions
Forgejo uses https://code.forgejo.org not https://github.com as the
default path
2024-12-13 13:12:20 +01:00

52 lines
1.7 KiB
YAML

name: Perform checks
on:
push:
pull_request:
workflow_dispatch:
jobs:
formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Run nix fmt
run: nix fmt -- --check .
nix_flake_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Run nix flake check
run: nix flake check
nix_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install nix
uses: https://github.com/DeterminateSystems/nix-installer-action@main
- name: Setup Action cache for nix
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
with:
fail-mode: true
- name: Check Nix flake inputs
uses: https://github.com/DeterminateSystems/flake-checker-action@v4 # This action
- name: Build nvim
run: nix build .\#default