Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zemse committed Dec 18, 2023
1 parent c6c7926 commit 677620b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Rust

on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]

# env:
# CARGO_TERM_COLOR: always

jobs:
nowasm-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: nowasm-build
run: cargo build --verbose
wasm-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: wasm-build
run: ./wasm_build.sh
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: fmt
run: cargo fmt

0 comments on commit 677620b

Please sign in to comment.