repo: move repo files into github directory #326
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: [push] | |
jobs: | |
changes: | |
runs-on: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hashicorp/setup-golang@v1 | |
with: | |
version-file: go.mod | |
- name: Check for changes | |
run: | | |
make changes | |
run-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- macos-12 | |
- windows-2022 | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hashicorp/setup-golang@v1 | |
with: | |
version-file: go.mod | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.50 | |
skip-cache: true | |
- name: Run Go Test | |
run: | | |
make test |