Skip to content

Commit

Permalink
Enable int test
Browse files Browse the repository at this point in the history
  • Loading branch information
rfung-tla authored and rfung777 committed Aug 13, 2024
1 parent 5975496 commit 93e86b8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ name: "Python CI"

on:
push:
# branches:
# - 'main'
branches:
- 'main'
pull_request:

concurrency:
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/python-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ name: "Python Integration"

on:
push:
branches:
- 'main'
pull_request:

concurrency:
Expand All @@ -31,16 +29,25 @@ concurrency:

jobs:
integration-test:
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04", "windows-2022"]

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Docker Login
if: matrix.os == 'windows-2022'
run: |
echo "${{ secrets.DOCKERHUB_PASSWORD }}" | docker login -u="${{ secrets.DOCKERHUB_USERNAME }}" --password-stdin
- name: Install
run: make install
- name: Run integration tests
run: make test-integration
- name: Show debug logs
if: ${{ failure() }}
run: docker compose -f dev/docker-compose.yml logs

0 comments on commit 93e86b8

Please sign in to comment.