Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
gblach committed May 18, 2024
0 parents commit 56f8f74
Show file tree
Hide file tree
Showing 15 changed files with 1,721 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*.rs]
indent_style = tab
indent_size = 8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 100
23 changes: 23 additions & 0 deletions .github/workflows/rust-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Rust check

on: [push, pull_request]

env:
CARGO_TERM_COLOR: always

jobs:
check:

runs-on: ubuntu-latest

strategy:
matrix:
rust-version: ["stable", "beta", "nightly"]

steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust-version }}
- name: Check
run: cargo check --verbose
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ---> Rust
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
#Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
Loading

0 comments on commit 56f8f74

Please sign in to comment.