chore: bump jina from 3.22.2 to 3.22.4 #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
on: | |
pull_request: | |
jobs: | |
core-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.7] | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install jina | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install wheel | |
pip install -r requirements.txt | |
- name: Setup Golang 1.18 | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Install Dependencies | |
run: | | |
go mod tidy -v | |
go get github.com/onsi/ginkgo/v2/ginkgo/[email protected] | |
go get github.com/onsi/ginkgo/v2/ginkgo/[email protected] | |
go get github.com/onsi/ginkgo/v2/ginkgo/[email protected] | |
go install github.com/onsi/ginkgo/v2/ginkgo | |
go get github.com/onsi/gomega/... | |
go mod tidy -v | |
- name: Run Client Tests | |
run: ginkgo --vv --progress | |
env: | |
ACK_GINKGO_RC: true | |
ACK_GINKGO_DEPRECATIONS: 1.16.5 |