Skip to content

Remove credential scan step #3

Remove credential scan step

Remove credential scan step #3

Workflow file for this run

name: Build and Publish
on:
push:
env:
PYTHON_VERSION: '3.8'
jobs:
buildAndPublish:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Checkout Code
uses: actions/[email protected]
- name: Pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --hook-stage manual --all-files
- name: Install requirements
run: |
pip install poetry
poetry install
- name: Run Tests
run: |
pytest .