Skip to content

text gen blocking main thread fix #3

text gen blocking main thread fix

text gen blocking main thread fix #3

Workflow file for this run

name: Bonfire
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache Dependencies
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Build
run: cargo build --verbose --all
- name: Clippy
run: cargo clippy --all -- -D warnings
- name: Audit
run: cargo audit