Files
tokenizers/.github/workflows/rust.yml
Workflow config file is invalid. Please check your config file: yaml: line 15: mapping values are not allowed in this context

31 lines
655 B
YAML

name: Rust
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose --manifest-path ./tokenizers/Cargo.toml
- name: Run Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --verbose --manifest-path ./tokenizers/Cargo.toml