Tests for type annotations and renam ops to use snake case #216
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
version: 'latest' | |
- name: Build takoweb | |
run: trunk build | |
- name: Run takoweb tests | |
run: cargo fmt --all -- --check |