Switch to bitmap markers to increase performance #64
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
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgis/postgis:16-3.4-alpine | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Nix | |
uses: DeterminateSystems/nix-installer-action@main | |
- name: Set up Nix Caching using GitHub Actions Cache | |
uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- name: Check health of Nix flake input | |
uses: DeterminateSystems/flake-checker-action@main | |
- name: Run project checks | |
run: nix develop -c check_project |