This repository was archived by the owner on Aug 9, 2026. It is now read-only.
Update module github.com/google/go-github/v50 to v88 #339
Workflow file for this run
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: "Test" | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: cachix/install-nix-action@v21 | |
| - uses: cachix/cachix-action@v12 | |
| with: | |
| name: each-commit-green | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| - run: nix develop --command devenv ci | |
| - run: nix develop --command devenv shell echo ok | |
| - run: nix build .# |