Skip to content

Add note

Add note #174

Workflow file for this run

name: takoweb
on: [push]
env:
CARGO_TERM_COLOR: always
defaults:
run:
working-directory: takoweb
jobs:
check_takoweb:
name: takoweb CI ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
/home/runner/.cargo/
target
key: ${{ runner.os }}-takoweb-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-takoweb-cargo-${{ hashFiles('**/Cargo.lock') }}
${{ runner.os }}-takoweb-cargo-
${{ runner.os }}-
- name: install wasm 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 takoweb
run: trunk build
- name: Run takoweb tests
run: cargo fmt --all -- --check