diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9a18feb4..229e1530 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -29,16 +29,17 @@ jobs: - name: Build and run tests run: | go install github.com/onsi/ginkgo/v2/ginkgo - ginkgo -v -r --skipPackage=./integration + ginkgo -v -r --skip-package=./integration integration-test: name: Run integration tests runs-on: ubuntu-latest steps: - name: Install Python - uses: actions/setup-python@v4 - with: - python-version: 3.11.9 + run: apt-get install python3 python3-pip + # uses: actions/setup-python@v4 + # with: + # python-version: 3.11.9 - uses: actions/checkout@v3 - uses: actions/setup-go@v4