Mongo relational improvements (#184) #742
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: Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'v*' | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout ποΈ | |
| uses: actions/checkout@v3 | |
| - name: Install Nix β | |
| uses: DeterminateSystems/nix-installer-action@v4 | |
| - name: Link Cachix π | |
| uses: cachix/cachix-action@v12 | |
| with: | |
| name: '${{ vars.CACHIX_CACHE_NAME }}' | |
| authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}' | |
| - name: run unit tests π¨ | |
| run: nix build .#checks.x86_64-linux.test --print-build-logs | |
| - name: run linter checks with clippy π¨ | |
| run: nix build .#checks.x86_64-linux.lint --print-build-logs | |
| - name: run integration tests π | |
| run: nix develop --command just test-mongodb-versions | |
| - name: run relational integration tests π | |
| run: nix develop --command just test-relational-mongodb-versions | |
| audit: | |
| name: Security Audit | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout ποΈ | |
| uses: actions/checkout@v3 | |
| - name: Install Nix β | |
| uses: DeterminateSystems/nix-installer-action@v4 | |
| - name: Link Cachix π | |
| uses: cachix/cachix-action@v12 | |
| with: | |
| name: '${{ vars.CACHIX_CACHE_NAME }}' | |
| authToken: '${{ secrets.CACHIX_CACHE_AUTH_TOKEN }}' | |
| - name: audit for reported security problems π¨ | |
| run: nix build .#checks.x86_64-linux.audit --print-build-logs |