Skip to content

feat: add section for unsupported packages to report #136

feat: add section for unsupported packages to report

feat: add section for unsupported packages to report #136

Workflow file for this run

name: check
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
check:
strategy:
fail-fast: false
matrix:
system:
- x86_64-linux
- aarch64-linux
- x86_64-darwin
- aarch64-darwin
runs-on: >-
${{ (matrix.system == 'x86_64-linux' && 'ubuntu-latest')
|| (matrix.system == 'aarch64-linux' && 'ubuntu-24.04-arm')
|| (matrix.system == 'x86_64-darwin' && 'macos-latest')
|| (matrix.system == 'aarch64-darwin' && 'macos-latest') }}
steps:
- uses: actions/checkout@v4
- name: setup nix
uses: ./.github/actions/setup-nix
with:
system: ${{ matrix.system }}
- run: nix flake check -L --keep-going