-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from tylerfanelli/gh
github: CI tests and CODEOWNERS for reviews Signed-off-by: German Maglione <[email protected]>
- Loading branch information
Showing
4 changed files
with
66 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Code Quality (rustfmt and clippy) | ||
on: [pull_request, create] | ||
|
||
jobs: | ||
build: | ||
if: github.event_name == 'pull_request' | ||
name: Code Quality (clippy, rustfmt) | ||
runs-on: fedora-latest | ||
strategy: | ||
matrix: | ||
rust: | ||
- stable | ||
target: | ||
- aarch64-apple-darwin | ||
steps: | ||
- name: Code checkout | ||
uses: actions/checkout@v2 | ||
- name: Install Rust toolchain (${{ matrix.rust }}) | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.rust }} | ||
target: ${{ matrix.target }} | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Formatting (rustfmt) | ||
run: cargo fmt -- --check | ||
|
||
- name: Clippy (default features) | ||
run: cargo clippy --target aarch64-apple-darwin -- -D warnings |
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @tylerfanelli @slp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters