Create rust.yml #7
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: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}- | |
${{ runner.os }}-cargo- | |
- name: Install protoc | |
run: | | |
sudo apt install -y protobuf-compiler | |
protoc --version | |
- name: Build | |
run: | | |
cargo install [email protected] | |
cargo build --verbose | |
cargo component build -p pulumi_wasm --verbose | |
cargo component build -p pulumi_wasm_random --verbose | |
cargo component build -p pulumi_rust_wasm --verbose | |
cargo component build -p pulumi_wasm_main --verbose | |
- name: Run tests | |
run: cargo test --verbose |