add write permission to artifact build CI, and change optimizer to v0… #129
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: simulation tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.19 | |
- name: Get cached just | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cargo/bin/just | |
key: ${{ runner.os }}-just-${{ env.JUST_VERSION }} | |
- name: Install just | |
run: cargo install just || true | |
- name: simulation tests | |
run: just simtest |