Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyhh0 committed Sep 14, 2024
0 parents commit dfe9e86
Show file tree
Hide file tree
Showing 14 changed files with 1,855 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
notebooks/*
.pytest_cache/*
env/*
tests/__pycache__/*
scripts/*
.DS_Store
target/
temp.txt
Loading

0 comments on commit dfe9e86

Please sign in to comment.