Skip to content

Commit

Permalink
inception
Browse files Browse the repository at this point in the history
  • Loading branch information
teilomillet committed Dec 28, 2023
1 parent 27a8591 commit 3acf7b9
Show file tree
Hide file tree
Showing 17 changed files with 1,643 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/pr_check.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/dist/
/target/
Loading

0 comments on commit 3acf7b9

Please sign in to comment.