MAINTAINERS: move jonboulle to EMERITUS #390
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: Render and Lint Documentation | |
on: | |
pull_request: | |
branches_ignore: [] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: ['1.19', '1.20', '1.21'] | |
name: Documentation and Linting | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: go/src/github.com/opencontainers/image-spec | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Render and Lint | |
env: | |
GOPATH: /home/runner/work/image-spec/image-spec/go | |
# do not automatically upgrade go to a different version: https://go.dev/doc/toolchain | |
GOTOOLCHAIN: local | |
run: | | |
export PATH=$GOPATH/bin:$PATH | |
cd go/src/github.com/opencontainers/image-spec | |
make install.tools | |
go get -t -d ./... | |
ls ../ | |
make | |
make .gitvalidation | |
make lint | |
make check-license | |
make test | |
make docs | |
- name: documentation artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: oci-docs | |
path: go/src/github.com/opencontainers/image-spec/output |