test: Add Equal, Func, and Op variants of SliceContainsSubset and SliceContainsAll #421
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: Run CI Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- 'README.md' | |
- 'LICENSE' | |
push: | |
branches: | |
- 'main' | |
jobs: | |
run-copywrite: | |
timeout-minutes: 5 | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/[email protected] | |
- name: verify copyright | |
run: | | |
copywrite headers --plan | |
run-lint: | |
timeout-minutes: 5 | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-golang@v3 | |
with: | |
version-file: go.mod | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.60.3 | |
run-changes: | |
timeout-minutes: 5 | |
needs: | |
- 'run-copywrite' | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-golang@v3 | |
with: | |
version-file: go.mod | |
- name: Check for changes | |
run: | | |
make changes | |
run-tests: | |
timeout-minutes: 5 | |
needs: | |
- 'run-copywrite' | |
- 'run-lint' | |
- 'run-changes' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-24.04 | |
- macos-14 | |
- windows-2022 | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: hashicorp/setup-golang@v3 | |
with: | |
version-file: go.mod | |
- name: Run Go Test | |
run: | | |
make test |