Skip to content

Commit

Permalink
updated Go version
Browse files Browse the repository at this point in the history
  • Loading branch information
nvnyale committed Sep 26, 2022
1 parent c1f9fc0 commit 5360a77
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 46 deletions.
45 changes: 0 additions & 45 deletions .circleci/config.yml

This file was deleted.

27 changes: 27 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Tests
on:
push:

jobs:
tests-off:
name: ${{ matrix.os }} - Go v${{ matrix.go-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version:
- "1.18.x"
os:
- "ubuntu-latest"

steps:
- uses: actions/checkout@v2

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

- name: Test
run: |
go mod tidy -v
go test -cover ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/YaleSpinup/apierror

go 1.14
go 1.18

0 comments on commit 5360a77

Please sign in to comment.