Skip to content

Commit

Permalink
Merge pull request #3 from rails/rm-rust-binary
Browse files Browse the repository at this point in the history
Rewrite the project in Rust
  • Loading branch information
rafaelfranca authored Mar 19, 2024
2 parents ba423f6 + d69e0d0 commit 26233e2
Show file tree
Hide file tree
Showing 10 changed files with 584 additions and 28 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust

on: [push, pull_request]

env:
CARGO_TERM_COLOR: always

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 26233e2

Please sign in to comment.