gosick #1

Merged
DelphicOkami merged 162 commits from gosick into main 2026-03-21 23:08:00 +00:00
2 changed files with 10 additions and 11 deletions
Showing only changes of commit 7e32cd83c5 - Show all commits

View File

@@ -33,17 +33,18 @@ jobs:
check-latest: true
cache: false
- name: Install AWS CLI v2
uses: ankurk91/install-aws-cli-action@v1
- name: Ensure tooling is available
run: |
set -euo pipefail
if ! command -v aws >/dev/null 2>&1; then
pipx install awscli
fi
aws --version
if ! command -v jq >/dev/null 2>&1; then
sudo apt-get update
sudo apt-get install -y jq
apt-get update
apt-get install -y jq
fi
- name: Run full unit test suite with coverage

View File

@@ -33,13 +33,11 @@ jobs:
check-latest: true
cache: false
- name: Ensure tooling is available
run: |
set -euo pipefail
- name: Install AWS CLI v2
uses: ankurk91/install-aws-cli-action@v1
if ! command -v aws >/dev/null 2>&1; then
pipx install awscli
fi
- name: Verify AWS CLI
run: aws --version
- name: Run full unit test suite with coverage
id: coverage