Skip to content

Add CI/CD workflows with GitHub Actions #2

Add CI/CD workflows with GitHub Actions

Add CI/CD workflows with GitHub Actions #2

Workflow file for this run

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v21
- name: Build package
run: nix build
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v21
- name: Run flake check
run: nix flake check
'on':
pull_request: {}
push: {}