Skip to content

Commit

Permalink
gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
authcall committed Jul 9, 2023
1 parent d4638bb commit 12368e1
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/services.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Services

on:
push:
branches:
- main
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Setup
uses: actions/setup-go@v4
with:
go-version: '1.20'

- name: Build
working-directory: ./packages/services
run: go build -v ./...

- name: Test
working-directory: ./packages/services
run: go test -v ./...
2 changes: 1 addition & 1 deletion packages/services/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module latticexyz/mud/packages/services

go 1.18
go 1.20

replace github.com/ethereum/go-ethereum v1.10.21 => github.com/ethereum-optimism/op-geth v1.101105.1

Expand Down

0 comments on commit 12368e1

Please sign in to comment.