Merge pull request #292 from 3ace/us-1113-doc-tag #575
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 all examples | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| name: Build Go ${{ matrix.go }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| go: [ '1.25', '1.24', '1.23' ] | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v2 | |
| - name: Setup go | |
| uses: actions/setup-go@v1 | |
| with: | |
| go-version: ${{ matrix.go }} | |
| - name: Setup ImageMagick's MagickWand | |
| run: | |
| sudo apt-get update && sudo apt-get install libmagickwand-dev imagemagick | |
| - name: Build all | |
| run: | | |
| ./build_examples.sh |