.github/workflows/release: sign zip before sending pull request #508
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: CI (Bazel) | |
| on: | |
| push: | |
| branches: [main, rsc-testing] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| ver: ['3.9', '3.10', '3.11', '3.12', '3.13'] | |
| env: | |
| BAZELISK_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: bazel-contrib/[email protected] | |
| with: | |
| bazelisk-version: '1.x' | |
| - uses: actions/[email protected] | |
| with: | |
| python-version: ${{ matrix.ver }} | |
| - name: Prepare Python ${{ matrix.ver }} environment | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install --upgrade absl-py mypy | |
| python python/toolchains/generate.py | |
| shell: bash | |
| - run: .github/bazel.sh | |
| shell: bash | |
| # TODO(junyer): Run mypy as per https://github.com/google/re2/issues/496. |