Skip to content

👷: Update dev-workflow.yml to run on all branches… #36

👷: Update dev-workflow.yml to run on all branches…

👷: Update dev-workflow.yml to run on all branches… #36

Workflow file for this run

name: OZI Checkpoint-only
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
permissions:
contents: read
jobs:
checkpoint:
name: OZI Checkpoint-only ${{ matrix.ozi }} (Python ${{ matrix.py }} on ${{ matrix.os }})
runs-on: '${{ matrix.os }}'
strategy:
matrix:
ozi:
- dist
- lint
- test
os:
- ubuntu-latest
py:
- '3.10'
- '3.11'
- '3.12'
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
files.pythonhosted.org:443
github.com:443
oziproject.dev:443
pypi.org:443
registry.npmjs.org:443
objects.githubusercontent.com:443
- uses: OZI-Project/checkpoint@581ee8e119ce1313abae9b7af15972c2f3c82a20
with:
python-version: ${{ matrix.py }}
suite: ${{ matrix.ozi }}