Skip to content

Merge pull request #24 from terraswap/feat/verified #26

Merge pull request #24 from terraswap/feat/verified

Merge pull request #24 from terraswap/feat/verified #26

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
args: --timeout=5m --enable=unparam --enable=misspell --enable=prealloc --tests=false --disable=errcheck
- name: Tests
shell: bash
run: |
make test
- name: Build all
run: make main && make build-api