Upgrade concourse to postgres 16 #431
Workflow file for this run
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
name: Run tests | |
on: pull_request | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v23 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Lint | |
run: | | |
set -ex | |
nix flake check | |
nix run .#fmt | |
nix run .#lint | |
git diff --exit-code | |
- name: Check mdbook-admonish changes are not committed | |
run: | | |
if grep -q "do not edit: managed by \`mdbook-admonish install\`" docs/book.toml; then | |
echo "remove generated mdbook-admonish lines from docs/books.toml" >&2 | |
exit 1 | |
fi | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v23 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Check documentation site builds | |
run: nix run .#documentation |