Skip to content

Commit

Permalink
Merge pull request #1 from open-rmf/arjo/feat/zanlungo_local_strategy
Browse files Browse the repository at this point in the history
Hooray! Thanks @arjo129
  • Loading branch information
codebot committed Oct 3, 2022
2 parents 414cb45 + 1110804 commit 856819c
Show file tree
Hide file tree
Showing 26 changed files with 2,359 additions and 348 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push, pull_request]

name: Unit tests and style

jobs:
ci:
name: Cargo Test and Cargo Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
components: rustfmt, clippy
- uses: actions-rs/cargo@v1
with:
command: test
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

0 comments on commit 856819c

Please sign in to comment.