Skip to content

Cancel the deployment of USDC #374

Cancel the deployment of USDC

Cancel the deployment of USDC #374

Workflow file for this run

name: Oracle
on:
push:
branches:
- main
paths:
- "oracle/**"
- ".github/workflows/oracle.yaml"
pull_request:
paths:
- "build/**"
- "bindings/**"
- "node/**"
- "oracle/**"
- ".github/workflows/oracle.yaml"
defaults:
run:
working-directory: "oracle"
jobs:
check:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Lint
run: |
rm -rf $HOME/.cache/golangci-lint
make lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.22.x
- name: Run build
run: make build
- name: Run tests
run: make test