4jcraft/.github/workflows/build-linux.yml
Workflow config file is invalid. Please check your config file: yaml: line 3: did not find expected key
2026-03-29 19:52:44 -05:00

35 lines
661 B
YAML

name: Build (Linux, x86-64)
on: [push, pull_request]
paths:
- '**.cpp'
- '**.h'
- '**.c'
- '**.cc'
- '**.cxx'
- '**.hh'
- '**.hpp'
- '**.hxx'
- '**.inl'
- "**meson.build"
- "flake.nix"
- '.github/workflows/build-linux.yml'
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install Nix
uses: cachix/install-nix-action@v31
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
run: nix build --print-build-logs
- name: Flake integrity
run: nix flake check