From d7ea0017b7cc7cbe7859dcfdd6c623100908b185 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Tue, 4 Oct 2022 15:14:21 +0200 Subject: [PATCH] moved again --- .github/ci.yaml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/ci.yaml diff --git a/.github/ci.yaml b/.github/ci.yaml new file mode 100644 index 0000000..3eada6e --- /dev/null +++ b/.github/ci.yaml @@ -0,0 +1,25 @@ +name: build-tast-tablizer +on: [push, pull_request] +jobs: + build: + strategy: + matrix: + version: [1.17, 1.18, 1.19] + os: [ubuntu-latest, windows-latest, macos-latest] + name: Build + runs-on: ${{ matrix.os }} + steps: + - name: Set up Go 1.18 + uses: actions/setup-go@v3 + with: + go-version: ${{ matrix.version }} + id: go + + - name: checkout + uses: actions/checkout@v3 + + - name: build + run: make + + - name: test + run: make test