Skip to content

Bump sigstore/gh-action-sigstore-python from 1.2.3 to 2.0.1 #88

Bump sigstore/gh-action-sigstore-python from 1.2.3 to 2.0.1

Bump sigstore/gh-action-sigstore-python from 1.2.3 to 2.0.1 #88

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
matrix:
python:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
cache: pip
- name: test
run: make test INSTALL_EXTRA=test
all-tests-pass:
if: always()
needs:
- test
runs-on: ubuntu-latest
steps:
- name: check test jobs
uses: re-actors/[email protected]
with:
jobs: ${{ toJSON(needs) }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: lint
run: make lint INSTALL_EXTRA=lint