Bump rustix from 0.36.6 to 0.36.7 in /proofs/stateright/activation-cache in the cargo group across 1 directory #268
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: Test Go | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.20.3 | |
- name: Install foundationdb | |
uses: pyr/foundationdb-actions-install@2b2c6dee7f3e21864c060c5fd53838e2e8a28aa1 | |
with: | |
version: "7.1.27" | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
run: go test -timeout 10m -v ./... | |
- name: Test (race) | |
run: go test -timeout 10m -v -race ./... | |
- name: Format | |
run: if [ "$(gofmt -s -l . | wc -l)" -gt 0 ]; then exit 1; fi |