Skip to content

chore: disable commit actions in release test workflow #1

chore: disable commit actions in release test workflow

chore: disable commit actions in release test workflow #1

Workflow file for this run

name: DO NOT MERGE THIS TEST WORKFLOW
on:
push:
branches:
- fix/release-tagging
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- uses: actions/cache@v3
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[dev,deploy,test]
- name: Run pre-commit
run: pre-commit run --all-files
fake-release:
runs-on: ubuntu-latest
concurrency: release
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
with:
no-changelog: true
no-commit: true
github_token: ${{ secrets.GITHUB_TOKEN }}