Skip to content

Commit

Permalink
chore: updated pipeline for ci in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
guiferpa committed Jan 17, 2025
1 parent 5be35ef commit 5dab385
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/quality.yml → .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
name: Quality
name: Pipeline

on:
push:
branches: [ master ]
branches: [main]

jobs:
test:
runs-on: ubuntu-16.04
runs-on: ubuntu-24.04
strategy:
matrix:
go: ['1.19', '1.20', '1.21', '1.22']
go: ['1.19', '1.20', '1.21', '1.22', '1.23']
name: Go ${{ matrix.go }}
steps:
- name: Checkout source code
uses: actions/checkout@v2

- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}

- name: Running test
run: go test -cover -v $(go list -v ./...)

0 comments on commit 5dab385

Please sign in to comment.