Bump time from 0.3.36 to 0.3.47 #309
This file contains hidden or 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 fmt | |
| run: rustup component add rustfmt | |
| - 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 |