Skip to content

Commit

Permalink
Merge branch 'init'
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcph4 committed Jan 29, 2025
2 parents b055a2b + 20171f9 commit b728a4f
Show file tree
Hide file tree
Showing 11 changed files with 3,995 additions and 27 deletions.
23 changes: 3 additions & 20 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,9 @@ jobs:
- uses: actions/checkout@v1

- name: Run tests
run: cargo test --verbose

- name: Generate documentation
run: cargo doc --verbose

- name: Run coverage
run: cargo install cargo-tarpaulin && cargo tarpaulin --avoid-cfg-tarpaulin # --fail-under 75

run: |
cargo build
cargo test --verbose
lint:
runs-on: ubuntu-latest
steps:
Expand All @@ -34,18 +29,6 @@ jobs:

- name: Run Clippy
run: cargo clippy --verbose

- name: Run Cargo check
run: cargo check --verbose

benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1

- name: Run benchmarks
run: cargo bench --verbose

audit:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ target/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

Cargo.lock

# Miscellaneous
msg.tmp
*.tmp
Expand Down
5 changes: 5 additions & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @jmcph4 will be requested for review when someone opens
# a pull request.
* @jmcph4
8 changes: 8 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Contribution Guide #

- Don't just fix typos, spelling errors, grammar errors, styling, etc.
- Ideally, file an issue (unless one exists obviously)
- Ensure that you run all relevant checks (see the CI pipeline)
- Open a PR into `master`
- Be nice!

Loading

0 comments on commit b728a4f

Please sign in to comment.