refactor(metrics): migrate ffi histogram recording to macros (#1712) #194
This file contains hidden or 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: ffi-nix | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| paths: | |
| - ffi/flake.nix | |
| - ffi/flake.lock | |
| - ffi/go.mod | |
| - ffi/go.sum | |
| jobs: | |
| ffi-nix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: DeterminateSystems/nix-installer-action@c5a866b6ab867e88becbed4467b93592bce69f8a # @v21 | |
| - uses: DeterminateSystems/magic-nix-cache-action@565684385bcd71bad329742eefe8d12f2e765b39 # @v13 | |
| - name: Check that FFI flake is up-to-date | |
| run: ./scripts/run-just.sh check-ffi-flake | |
| - name: Test nix build of Golang FFI bindings | |
| run: ./scripts/run-just.sh test-ffi-nix | |