fix(wasm): Set resolver to v2 #53
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: ci-tband | |
on: | |
push: | |
branches: ["main"] | |
# Allows to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
tband-unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install just | |
run: | | |
mkdir ~/bin | |
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/bin | |
- name: Run | |
working-directory: ${{github.workspace}} | |
run: ~/bin/just unit_tests | |
tband-baremetal-integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Install just | |
run: | | |
mkdir ~/bin | |
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/bin | |
- name: Install protoc | |
run: sudo apt-get install protobuf-compiler | |
- name: Run | |
working-directory: ${{github.workspace}} | |
run: ~/bin/just baremetal_integration_tests |