Update to Spin SDK and sprig that are not mad about templates #325
Workflow file for this run
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: Build | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install Dependencies | |
run: | | |
rustup target add wasm32-wasi | |
- name: Build | |
run: | | |
make build | |
- name: Build Bart CLI | |
run: | | |
make bart | |
- name: Test | |
run: | | |
make test | |