Skip to content

docs: Add recommended GCP roles and privileges #178

docs: Add recommended GCP roles and privileges

docs: Add recommended GCP roles and privileges #178

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Configure Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Building Collection scripts
run: pip install -e .
test:
name: "test (${{ matrix.python-version }})"
strategy:
fail-fast: true
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
uses: ./.github/workflows/test.yml
with:
python-version: ${{ matrix.python-version }}