Chore/add GitHub links #1
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 and test HTTP File Server | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- "http-file-server/rust/**" | |
env: | |
working-directory: "./http-file-server" | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: wasmcloud/common-actions/install-wash@main | |
- name: Add wasm32-unknown-unknown | |
run: rustup target add wasm32-unknown-unknown | |
- name: Build actor | |
run: | | |
wash new actor --path rust hello | |
wash build -p hello | |
working-directory: ${{ env.working-directory }} | |
- name: Check formatting | |
run: cargo fmt -- --check | |
shell: bash | |
working-directory: ${{ env.working-directory }}/hello | |
- name: Check lints with clippy | |
run: | | |
rustup component add clippy | |
cargo clippy | |
working-directory: ${{ env.working-directory }}/hello |