Skip to content

Commit 44db0ff

Browse files
committed
IT only for Unix based systems
1 parent 5d8b62c commit 44db0ff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/checkout@v3
3131

3232
- name: docker-compose
33-
if: ${{ matrix.os != 'macos-latest' }}
33+
if: ${{ matrix.os == 'ubuntu-latest' }}
3434
run: docker-compose -f ./docker/docker-compose.yml up -d
3535

3636
- name: Caching cargo dependencies
@@ -42,11 +42,11 @@ jobs:
4242
rust-version: ${{ matrix.rust }}
4343

4444
- name: Load data for MSSQL tests
45-
if: ${{ matrix.os != 'macos-latest' }}
45+
if: ${{ matrix.os == 'ubuntu-latest' }}
4646
run: cargo test initialize_sql_server_docker_instance -p tests --all-features --no-fail-fast -- --show-output --nocapture --include-ignored
4747

4848
- name: Run all tests, UNIT and INTEGRATION for Linux targets
49-
if: ${{ matrix.os != 'macos-latest' }}
49+
if: ${{ matrix.os == 'ubuntu-latest' }}
5050
run: cargo test --verbose --workspace --all-features --no-fail-fast -- --show-output --test-threads=1
5151

5252
- name: Run UNIT tests with no external connections for the rest of the defined targets

0 commit comments

Comments
 (0)