Skip to content

Commit 3caeaa0

Browse files
Merge pull request #9 from Jonstep101010/8-migrate-tokenization
migrate tokenization
2 parents b52f3b5 + b1ecd98 commit 3caeaa0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1373
-3839
lines changed

.github/workflows/main.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Install Rust
19+
uses: actions-rs/toolchain@v1
20+
with:
21+
toolchain: nightly-2024-11-01
22+
23+
- name: Build
24+
run: cargo build --verbose
25+
26+
- name: Run tests
27+
run: cargo test --verbose

0 commit comments

Comments
 (0)