Skip to content

chore(ci): rename path to be actions-python #25

chore(ci): rename path to be actions-python

chore(ci): rename path to be actions-python #25

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: open-turo/actions-gha/lint@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: open-turo/actions-gha/test@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
release:
needs:
- lint
- test
name: Release
runs-on: ubuntu-latest
steps:
- uses: open-turo/actions-gha/release@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}