Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
test run
Browse files Browse the repository at this point in the history
  • Loading branch information
z-tech committed Sep 25, 2023
1 parent fa07c81 commit d6091ce
Showing 1 changed file with 31 additions and 33 deletions.
64 changes: 31 additions & 33 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,6 @@ jobs:
name: Check Style
runs-on: ubuntu-latest
steps:
- name: Paths Changes Filter
uses: dorny/[email protected]
with:
filters: |
mnt4_753_is_updated:
- 'mnt4_753/**'
mnt6_753_is_updated:
- 'mnt6_753/**'
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust
Expand Down Expand Up @@ -114,36 +106,42 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Paths Changes Filter
uses: dorny/[email protected]
with:
filters: |
mnt4_753_is_updated:
- 'mnt4_753/**'
mnt6_753_is_updated:
- 'mnt6_753/**'
- name: Run tests
run: |
cd ${{matrix.dir}}
cargo test --all-features
test-mnt4-753:
name: Test (mnt4_753/)
if: ${{ steps.filter.outputs.mnt4_753_is_updated == 'true' }}
runs-on: macos-latest
needs: [directories] # Waits for the directory listing job
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: |
cd mnt4_753/
cargo test --all-features
test-mnt6-753:
name: Test (mnt6_753/)
if: ${{ steps.filter.outputs.mnt6_753_is_updated == 'true' }}
runs-on: macos-latest
needs: [directories] # Waits for the directory listing job
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: |
cd mnt6_753/
cargo test --all-features
- name: Test (mnt4_753/)
if: ${{ steps.filter.outputs.mnt4_753_is_updated == 'true' }}
runs-on: macos-latest
needs: [directories] # Waits for the directory listing job
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: |
cd mnt4_753/
cargo test --all-features
- name: Test (mnt6_753/)
if: ${{ steps.filter.outputs.mnt6_753_is_updated == 'true' }}
runs-on: macos-latest
needs: [directories] # Waits for the directory listing job
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Run tests
run: |
cd mnt6_753/
cargo test --all-features
docs:
name: Check Documentation
Expand Down

0 comments on commit d6091ce

Please sign in to comment.