add sepolia config for smol #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Vaildate Schema | |
on: | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize, reopened] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: golang:1.23-alpine | |
options: --user root | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run main.go | |
run: | | |
go run main.go | |
env: | |
GOOS: linux | |
GOARCH: amd64 |