Bump github.com/FollowTheProcess/collections from 0.5.0 to 0.5.1 (#127) #767
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- v* | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
GOEXPERIMENT: loopvar | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Run Tests | |
run: go test -race ./... | |
env: | |
SPOK_INTEGRATION_TEST: true | |
fuzz: | |
name: Fuzz | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Run Fuzz Tests | |
run: go test ./lexer -fuzz FuzzLexer -fuzztime 1m | |
cov: | |
name: Coverage | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Run Tests | |
run: go test -race -cover -covermode=atomic -coverprofile=./coverage.out ./... | |
env: | |
SPOK_INTEGRATION_TEST: true | |
- name: Coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.out | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Clean Mod Cache # See https://github.com/golangci/golangci-lint-action/issues/135 | |
run: go clean -modcache | |
- name: Run Linting | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
version: latest | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Nox | |
uses: wntrblm/[email protected] | |
with: | |
python-versions: "3.11" | |
- name: Build Docs | |
run: nox --non-interactive --session build | |
publish-docs: | |
needs: docs | |
name: Publish Docs | |
runs-on: ubuntu-latest | |
# Only publish docs automatically on new release | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Set up Nox | |
uses: wntrblm/[email protected] | |
with: | |
python-versions: "3.11" | |
- name: Deploy Docs to GitHub Pages | |
run: nox --non-interactive --session publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
- fuzz | |
- lint | |
- docs | |
- publish-docs | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Fetch Existing Tags | |
run: git fetch --force --tags | |
- name: Install Syft | |
uses: jaxxstorm/[email protected] | |
with: | |
repo: anchore/syft | |
- name: Parse Release Version | |
id: version | |
run: | | |
VERSION=${GITHUB_REF#refs/tags/v} | |
echo "version=$VERSION" >> $GITHUB_OUTPUT | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
- name: Publish Draft Release | |
uses: release-drafter/release-drafter@v5 | |
with: | |
version: ${{ steps.version.outputs.version }} | |
publish: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }} |