Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thatmattlove committed Jun 10, 2024
1 parent f50ca34 commit d6b51c5
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@ on: [push, pull_request]
name: Test

jobs:
test:
strategy:
matrix:
go-version:
- 1.20.x
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
test:
strategy:
matrix:
go-version:
- 1.22.x
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Test
run: go test ./... -v
- name: Test
run: go test ./... -v

0 comments on commit d6b51c5

Please sign in to comment.