Skip to content

Commit

Permalink
Merge pull request #162 from Consensys/161-fix-github-actions
Browse files Browse the repository at this point in the history
feat: Fix Github Actions
  • Loading branch information
DavePearce authored Jun 13, 2024
2 parents a7b83bd + 3bf0e7d commit 8a12829
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 19 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/lint.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint
name: build

on:
push:
Expand All @@ -7,7 +7,17 @@ on:
branches: [ "main" ]

jobs:
build:

test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.20'
- run: make test

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 8a12829

Please sign in to comment.