Skip to content

Fix log flood from tbot update parser #672

Fix log flood from tbot update parser

Fix log flood from tbot update parser #672

Workflow file for this run

name: Rust
on: [push]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run tests
run: cargo test --verbose
test-locales:
strategy:
matrix:
locale: [zh, en]
runs-on: ubuntu-latest
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: nightly
- uses: actions/checkout@master
- name: Check locales
env:
LOCALE: ${{ matrix.locale }}
run: cargo check --verbose