Completely rework the system to pull statues #26
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: "Main WF" | |
on: push | |
jobs: | |
unit-tests: | |
runs-on: ubuntu-22.04 | |
env: | |
TEST_RESULTS: /tmp/test-results | |
GOTESTSUM_JUNITFILE: "junit/unit-tests.xml" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: './go.mod' | |
- name: "Install Deps" | |
run: | | |
curl -sSL "https://github.com/magefile/mage/releases/download/v1.15.0/mage_1.15.0_Linux-64bit.tar.gz" | sudo tar -xz --no-same-owner -C /usr/local/bin mage | |
mage --version | |
go install github.com/jackc/tern/v2@latest | |
tern version | |
go install gotest.tools/gotestsum@latest | |
gotestsum --version | |
- run: mage -v test | |
build-dry-run: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: '2.2.0' | |
args: "release --snapshot" |