Skip to content

Fix a typo.

Fix a typo. #7

Workflow file for this run

name: "Continuous Integration: Rust"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Wget models
uses: wei/wget@v1
with:
args: -O stories15M.bin https://huggingface.co/karpathy/tinyllamas/resolve/main/stories15M.bin
- name: Run tests
run: cargo test --verbose