mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-09 13:37:14 +00:00
27 lines
487 B
YAML
27 lines
487 B
YAML
name: Build (Linux x86/64)
|
|
|
|
on:
|
|
push:
|
|
- "**.cpp"
|
|
- "**.h"
|
|
- "**.meson.build"
|
|
- ".github/workflows/*"
|
|
|
|
jobs:
|
|
build-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v31
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
|
|
- name: Build
|
|
run: nix build
|
|
|
|
- name: Flake integrity
|
|
run: nix flake check
|