2024-01-22 22:57:21 +00:00
|
|
|
name: Deploy Contract
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2024-01-22 23:40:59 +00:00
|
|
|
- uses: actions/setup-go@v3
|
|
|
|
with:
|
|
|
|
go-version: 1.19
|
|
|
|
check-latest: true
|
2024-01-22 22:57:21 +00:00
|
|
|
- name: Test contract
|
|
|
|
run: |
|
2024-01-22 23:37:03 +00:00
|
|
|
make contract-tools
|
|
|
|
# This seems to be an empty placeholder.
|
|
|
|
make test-contract
|