Files
tokenizers/.github/workflows/rust.yml
2019-11-29 19:28:49 -05:00

25 lines
482 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: Moving to tokenizers folder
run: cd tokenizers
- name: Second move to tokenizers folder
run: cd tokenizers
- name: List files
run: ls -lah
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose