chore(deps): bump github.com/filecoin-project/go-state-types from 0.10.0-alpha-2 to 0.13.0 #1917
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: Go | |
on: | |
push: | |
branches: [ "master", "dev" ] | |
pull_request: | |
branches: [ "master", "dev" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.18 | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install hwloc libhwloc-dev jq ocl-icd-opencl-dev | |
- name: Build | |
run: make clean all | |
- name: Setup | |
run: echo "ESTUARY_TOKEN=$(./estuary setup | grep Token | cut -d ' ' -f 3)" >> $GITHUB_ENV | |
- name: Test | |
run: go test -v ./... | |
env: | |
ESTUARY_TOKEN: $ESTUARY_TOKEN |