Skip to content

Build - 10672260262

Build - 10672260262 #7

Workflow file for this run

name: Git Stream Build
run-name: Build - ${{ github.run_id }}
on:
workflow_dispatch:
push:
branches:
- main
- release/*
pull_request:
branches:
- main
- release/*
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
uses: tardis4500/shared-actions/.github/workflows/vjer.yml@main
with:
action: test
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.11"
- "3.12"
build:
needs: test
uses: tardis4500/shared-actions/.github/workflows/vjer.yml@main
with:
action: build
os: ubuntu-latest
python-version: "3.11"
use-flit: true
install-test:
needs: build
uses: tardis4500/shared-actions/.github/workflows/install-test.yml@main
with:
os: ${{ matrix.os }}
python-version: ${{ matrix.python-version }}
test-action: "python -c 'import batcave; print(batcave.__version__)'"
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
python-version:
- "3.11"
- "3.12"