From 91da0c37441c56c711bb427a313cc51973c151db Mon Sep 17 00:00:00 2001 From: Luca Bigliardi Date: Thu, 5 Nov 2020 10:16:56 +0100 Subject: [PATCH] move to github actions Signed-off-by: Luca Bigliardi --- .circleci/config.yml | 24 ------------------------ .github/workflows/test.yml | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 24 deletions(-) delete mode 100644 .circleci/config.yml create mode 100644 .github/workflows/test.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 2ad0642..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,24 +0,0 @@ -version: 2 -jobs: - test-1.9: - docker: - - image: circleci/golang:1.9 - working_directory: /go/src/github.com/google/alertmanager-irc-relay - steps: - - checkout - - run: go get -v -t -d ./... - - run: go test -v ./... - test-1.10: - docker: - - image: circleci/golang:1.10 - working_directory: /go/src/github.com/google/alertmanager-irc-relay - steps: - - checkout - - run: go get -v -t -d ./... - - run: go test -v ./... -workflows: - version: 2 - test: - jobs: - - test-1.9 - - test-1.10 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..81c2d34 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +on: [push, pull_request] +name: Test +jobs: + test: + strategy: + matrix: + go-version: [1.11.x, 1.14.x, 1.15.x] + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Install Go + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + - name: Checkout code + uses: actions/checkout@v2 + - name: Test + run: go test -v ./...