Skip to content

Commit

Permalink
CI test with extra logs
Browse files Browse the repository at this point in the history
  • Loading branch information
gianfra-t committed Jun 26, 2024
1 parent cf90568 commit 128aef1
Show file tree
Hide file tree
Showing 3 changed files with 250 additions and 249 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Check Build
if: matrix.rust == 'stable'
run: |
bash ./scripts/cmd-all build check
# - name: Check Build
# if: matrix.rust == 'stable'
# run: |
# bash ./scripts/cmd-all build check

- name: Test
if: matrix.rust == 'nightly'
Expand All @@ -90,26 +90,26 @@ jobs:
DEST_STELLAR_SECRET_TESTNET: ${{ secrets.DEST_STELLAR_SECRET_TESTNET }}
with:
toolchain: nightly-2024-02-09
command: test
command: test test_subxt_processing_events_after_dispatch_error
args: --all --all-features

- name: Rustfmt
if: matrix.rust == 'nightly'
uses: actions-rs/cargo@v1
with:
toolchain: nightly-2024-02-09
command: fmt
args: --all -- --check
# - name: Rustfmt
# if: matrix.rust == 'nightly'
# uses: actions-rs/cargo@v1
# with:
# toolchain: nightly-2024-02-09
# command: fmt
# args: --all -- --check

- name: Clippy -- Libraries and Binaries
if: matrix.rust == 'stable'
run: |
bash ./scripts/cmd-all clippy "clippy --lib --bins" "-- -W clippy::all -A clippy::style -A forgetting_copy_types -A forgetting_references"
# - name: Clippy -- Libraries and Binaries
# if: matrix.rust == 'stable'
# run: |
# bash ./scripts/cmd-all clippy "clippy --lib --bins" "-- -W clippy::all -A clippy::style -A forgetting_copy_types -A forgetting_references"

- name: Clippy -- Tests and Examples
if: matrix.rust == 'nightly'
uses: actions-rs/cargo@v1
with:
toolchain: nightly-2024-02-09
command: clippy
args: --all-features --tests --benches --examples -- -A clippy::all -W clippy::correctness -A forgetting_copy_types -A forgetting_references
# - name: Clippy -- Tests and Examples
# if: matrix.rust == 'nightly'
# uses: actions-rs/cargo@v1
# with:
# toolchain: nightly-2024-02-09
# command: clippy
# args: --all-features --tests --benches --examples -- -A clippy::all -W clippy::correctness -A forgetting_copy_types -A forgetting_references
Loading

0 comments on commit 128aef1

Please sign in to comment.