-
Notifications
You must be signed in to change notification settings - Fork 1
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 #30 from jprochazk/v2
V2
- Loading branch information
Showing
939 changed files
with
36,569 additions
and
33,347 deletions.
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,4 @@ | ||
[alias] | ||
xtask = "run --package xtask --" | ||
x = "run --package xtask --" | ||
hebi = "run --quiet --package hebi-cli --" |
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,77 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
lint-test: | ||
name: Lint + Test | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
toolchain: [stable, nightly] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install Rust | ||
uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.toolchain }} | ||
components: rustfmt, clippy | ||
|
||
- name: Cache | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Formatting | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: fmt | ||
args: --all -- --check | ||
|
||
- name: Linting | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: clippy | ||
args: --all-targets --all-features -- -D warnings | ||
|
||
- name: Run tests | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: xtask | ||
args: test | ||
# miri: | ||
# name: Miri | ||
# runs-on: ubuntu-22.04 | ||
# env: | ||
# TOOLCHAIN: nightly | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# | ||
# - name: Install Rust | ||
# uses: dtolnay/rust-toolchain@v1 | ||
# with: | ||
# toolchain: ${{ env.TOOLCHAIN }} | ||
# components: miri, rust-src | ||
# | ||
# - name: Cache | ||
# uses: Swatinem/rust-cache@v2 | ||
# | ||
# - name: Run miri tests | ||
# uses: actions-rs/cargo@v1 | ||
# with: | ||
# command: xtask | ||
# args: miri test | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
{ | ||
"rust-analyzer.cargo.features": [] | ||
"rust-analyzer.showUnlinkedFileNotification": false, | ||
"rust-analyzer.check.extraArgs": ["--target-dir=./target_ra"], | ||
"rust-analyzer.cargo.features": ["serde"] | ||
} |
Oops, something went wrong.