From 2551461a14acf449cc1ae0b70d9d30ebad170991 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 14 May 2024 16:37:12 -0500 Subject: Add Go Signed-off-by: Matt Strapp --- .github/workflows/go.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/go.yml (limited to '.github/workflows/go.yml') diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..b415085 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,28 @@ +name: Go + +on: + push: + paths: + - '**.go' + - '**go.mod' + pull_request: + paths: + - '**.go' + - '**go.mod' + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + steps: + - uses: actions/checkout@v2 + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 'stable' + - name: Build + run: go build -v . + - name: Test + run: go test -v . \ No newline at end of file -- cgit v1.2.3