Dan Buch
8cc0a9c5da
and use make targets in CI, pass flag spec YAML through yq includes result of running `make v2approve`
85 lines
2.2 KiB
YAML
85 lines
2.2 KiB
YAML
name: Run Tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- v3-dev-main
|
|
tags:
|
|
- v2.*
|
|
- v3.*
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- v3-dev-main
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
go: [1.18.x, 1.19.x]
|
|
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ matrix.go }}
|
|
- name: Set PATH
|
|
run: echo "${GITHUB_WORKSPACE}/.local/bin" | tee -a "${GITHUB_PATH}" >/dev/null
|
|
- if: matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest'
|
|
run: make ensure-goimports
|
|
- uses: actions/checkout@v3
|
|
- if: matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest'
|
|
run: make lint
|
|
- run: make vet
|
|
- run: make tag-test
|
|
- run: make test
|
|
- run: make -C cmd/urfave-cli-genflags
|
|
- run: make check-binary-size
|
|
- run: make tag-check-binary-size
|
|
- run: make yamlfmt
|
|
- run: make diffcheck
|
|
- run: make v2diff
|
|
- if: success() && matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest'
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
fail_ci_if_error: true
|
|
|
|
test-docs:
|
|
name: test-docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/setup-go@v3
|
|
with:
|
|
go-version: 1.19.x
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
- name: Set PATH
|
|
run: echo "${GITHUB_WORKSPACE}/.local/bin" | tee -a "${GITHUB_PATH}" >/dev/null
|
|
- uses: actions/checkout@v3
|
|
- run: make ensure-gfmrun
|
|
- run: make gfmrun
|
|
- run: make diffcheck
|
|
publish:
|
|
permissions:
|
|
contents: write
|
|
# TODO: switch once v3 is released {{
|
|
# if: startswith(github.ref, 'refs/tags/')
|
|
if: 'false'
|
|
# }}
|
|
name: publish
|
|
needs: [test-docs]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- run: make ci-ensure-mkdocs
|
|
- run: make set-mkdocs-remote
|
|
env:
|
|
MKDOCS_REMOTE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- run: make deploy-mkdocs
|