Allow to set uid and gid instead of owner and group. #3038
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: "Test" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
schedule: | |
- cron: '51 2 * * *' | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
- name: Add keys group (needed for go tests) | |
run: sudo groupadd keys | |
- name: Run unit tests | |
run: nix develop .#unit-tests --command "true" |