This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
chore: Update module go.uber.org/atomic to v1.11.0 - autoclosed #674
Workflow file for this run
This file contains 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: Examples | |
on: [pull_request] | |
jobs: | |
docs-examples: | |
name: Build examples | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
go: ['1.19'] | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: try building each example | |
run: ./.github/build-examples.sh |