Skip to content

migrated the faucet contract and it's dependencies from main to test… #1578

migrated the faucet contract and it's dependencies from main to test…

migrated the faucet contract and it's dependencies from main to test… #1578

Workflow file for this run

name: Tests
on:
pull_request:
paths:
- "**.go"
- "**.gno"
- "go.mod"
- "go.sum"
- ".github/workflows/unit-tests.yml"
- "Makefile"
push:
branches:
- master
jobs:
go-test:
name: Go Test
strategy:
fail-fast: false
matrix:
goversion: ["1.18.x", "1.19.x"]
args:
- test.go1
- test.go2
- test.go3
- test.go4
- test.files1
- test.files2
- test.packages0
- test.packages1
- test.packages2
- test.examples
- test.flappy
- test.docker-integration
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- name: test
run: make ${{ matrix.args }}