Fix missing changements
This commit is contained in:
parent
2dd9558f74
commit
6c6521ef32
79 changed files with 1287 additions and 65765 deletions
33
.github/workflows/pr_check.yml
vendored
Normal file
33
.github/workflows/pr_check.yml
vendored
Normal file
|
@ -0,0 +1,33 @@
|
|||
name: pr_check
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: install toolchain
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
target: wasm32-unknown-unknown
|
||||
override: true
|
||||
profile: minimal
|
||||
- name: Install trunk
|
||||
uses: jetli/trunk-action@v0.1.0
|
||||
with:
|
||||
version: 'latest'
|
||||
- name: Build
|
||||
run: trunk build
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
Loading…
Add table
Add a link
Reference in a new issue