From 80f7668b3205b387d517c3f8acba297aba5f5811 Mon Sep 17 00:00:00 2001 From: Tyler Smith Date: Fri, 16 Aug 2024 22:35:57 -0400 Subject: [PATCH] ci: Update actions workflow and remove coveralls. --- .github/workflows/workflow.yml | 30 ++++++------------------------ 1 file changed, 6 insertions(+), 24 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 8cae732..3d6a71f 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -1,36 +1,18 @@ ---- - name: build-check on: [push, pull_request] jobs: build-check: name: Run build-check on Go ${{ matrix.go }} - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: go: - - '1.15' - - '1.14' - - '1.13' - - '1.12' - - '1.11' + - '1.22' + - '1.21' + - '1.20' steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v1 + - uses: actions/checkout@v3 + - uses: actions/setup-go@v4 with: go-version: ${{ matrix.go }} - run: make build_check - save-test-coverage: - name: Save test coverage - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-go@v1 - with: - go-version: 1.15 - - name: Get test coverage - run: make tests - - name: Send coverage - uses: shogo82148/actions-goveralls@v1 - with: - path-to-profile: coverage.out