Integrate agg changes on crypto #3059
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: Build and run tests | |
| on: | |
| push: | |
| branches: [ master, rc/*, feat/* ] | |
| pull_request: | |
| branches: [ master, feat/*, rc/* ] | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| strategy: | |
| matrix: | |
| go-version: [1.23.6] | |
| os: [ubuntu-latest, macos-13] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: ${{ matrix.go-version }} | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Test (Linux) | |
| if: runner.os == 'Linux' | |
| run: | | |
| make test | |
| - name: Test (MacOS ARM64) | |
| if: runner.os == 'macOS' | |
| run: | | |
| make test-w2 | |