Skip to content

Commit

Permalink
chore(ci): Updating build workflow (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
fclairamb authored Sep 18, 2022
1 parent 60457fa commit 2bdcd44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,7 @@ jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-20.04

strategy:
matrix:
go: [ 1.18, 1.17 ]
include:
- go: 1.18
lint: true
runs-on: ubuntu-22.04

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -36,7 +29,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
go-version: 1.19

- name: Build
run: go build -v ./...
Expand All @@ -48,10 +41,3 @@ jobs:
run: |
apt-get update && apt-get install gcc -y
go test -race -v ./...
# For github to have a unique status check name
build-status:
needs: build
runs-on: ubuntu-20.04
steps:
- run: echo 'All good'
File renamed without changes.

0 comments on commit 2bdcd44

Please sign in to comment.