release: v0.0.5: async and integration tests #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
push: | |
name: CI | |
jobs: | |
nocommit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "nocommit checker" | |
uses: nobssoftware/nocommit@v2 | |
nix-flake-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
enable_kvm: true | |
extra_nix_config: "system-features = nixos-test benchmark big-parallel kvm" | |
- name: Configure Nix cache | |
uses: DeterminateSystems/magic-nix-cache-action@main | |
- run: nix flake check -L | |
# Ensure nix flake show isn’t broken | |
nix-flake-show: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install Nix | |
uses: DeterminateSystems/nix-installer-action@v9 | |
# No need for a cache | |
- run: nix flake show |