This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
Bump boto3 from 1.28.70 to 1.34.98 #601
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: test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install poetry | |
run: pipx install poetry==1.3.2 | |
- name: Install python or load from cache with dependencies | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "poetry" | |
- name: Install dependencies | |
run: | | |
poetry install --all-extras --with dev | |
- name: Run unit tests | |
run: | | |
make test_not_vespa | |
- name: Install latest Vespa CLI | |
env: | |
VESPA_CLI_VERSION: "8.250.43" | |
run: | | |
mkdir vespa-cli | |
curl -fsSL https://github.com/vespa-engine/vespa/releases/download/v${VESPA_CLI_VERSION}/vespa-cli_${VESPA_CLI_VERSION}_linux_amd64.tar.gz | \ | |
tar -zxf - -C vespa-cli --strip-component=1 | |
echo "vespa-cli/bin" >> $GITHUB_PATH | |
- name: Setup vespa test instance | |
run: make vespa_dev_setup | |
- name: Run vespa tests | |
run: | | |
make test |