Skip to content

Commit

Permalink
revert build_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
nkysg committed Dec 13, 2024
1 parent f13c92c commit aedb31f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,25 @@ jobs:
command: clean
- name: run cargo check
uses: actions-rs/cargo@v1
env:
RUSTFLAGS: -Wclippy::use_self -D warnings
with:
command: clippy
args: --all-targets
- name: build
uses: actions-rs/cargo@v1
with:
command: build
args: --all
- name: test
run: ./scripts/nextest.sh
# - name: check changed files
# run: bash ./scripts/changed_files.sh
- name: Doc Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --doc
- name: integration test dev environment
env:
RUST_LOG: info
Expand All @@ -41,4 +55,4 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --test integration -- -e cmd
args: --test integration -- -e cmd

0 comments on commit aedb31f

Please sign in to comment.