Skip to content

Commit

Permalink
Updating test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kenshaw committed Sep 9, 2022
1 parent 58a6250 commit 895a1ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
17 changes: 6 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
on: [push, pull_request]
name: Test
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.16.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
name: Test
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
uses: actions/setup-go@v3
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Test
run: TMPDIR=$RUNNER_TEMP go test -v ./...
run: go test -v ./...
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/chromedp/omahaproxy

go 1.17
go 1.19

require github.com/kenshaw/httplog v0.4.1

0 comments on commit 895a1ac

Please sign in to comment.