Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherBiscardi committed Sep 29, 2023
0 parents commit 832971c
Show file tree
Hide file tree
Showing 17 changed files with 1,926 additions and 0 deletions.
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/[email protected]
with:
version: 'latest'
- name: Build
run: trunk build
- name: Run tests
run: cargo test --verbose
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/dist/
/target/

# Local Netlify folder
.netlify
Loading

0 comments on commit 832971c

Please sign in to comment.