From 23f8d9e2a92f7ab3d31903094391d1979f2f7d81 Mon Sep 17 00:00:00 2001 From: Princess Mortix <47502554+princessmortix@users.noreply.github.com> Date: Fri, 26 Jan 2024 14:53:19 -0300 Subject: [PATCH] CI: test github CI --- .github/workflows/go.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..a4b785c --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,17 @@ +on: [push, pull_request] +name: Build +jobs: + test-nocache: + strategy: + matrix: + go-version: [ 1.21.x ] + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 + with: + go-version: ${{ matrix.go-version }} + cache: false + - run: go build -o "${{ matrix.os }}" ./... +