Skip to content

Bitcoin Application for Simplicity #54

Bitcoin Application for Simplicity

Bitcoin Application for Simplicity #54

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
ignore_words_file: spelling.ignore.txt
skip: alectryon
build:
strategy:
fail-fast: false
matrix:
project: ["c", "haskell"] # coq takes a very long time and times out at 6 hours...
os: ["ubuntu-latest", macos-latest]
channel: ["nixos-25.05", "nixpkgs-unstable"]
runs-on: ${{ matrix.os }}
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@v17
- name: Update channel ${{matrix.channel}}
run: |
nix-channel --add https://nixos.org/channels/${{matrix.channel}} nixpkgs
nix-channel --update
- run: nix-build -A ${{matrix.project}}