Skip to content

feat: remove draft changes and ready to use #16

feat: remove draft changes and ready to use

feat: remove draft changes and ready to use #16

Workflow file for this run

name: ci
concurrency:
group: "${{ github.ref_name }}"
cancel-in-progress: true
on:
push:
branches:
- main
schedule:
- cron: "30 1 */1 * *"
jobs:
self-test:
if: github.event_name == "schedule"

Check failure on line 16 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 16, Col: 9): Unexpected symbol: '"schedule"'. Located at position 22 within expression: github.event_name == "schedule" .github/workflows/ci.yml (Line: 29, Col: 9): Unexpected symbol: '"push"'. Located at position 22 within expression: github.event_name == "push"
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Bump me
uses: licenseware/bump-version@main
with:
release: "true"
tag: "true"
token: ${{ secrets.GITHUB_TOKEN }}
checks:
if: github.event_name == "push"
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: pip install -U pip pre-commit
- name: Run pre-commit
run: pre-commit run -a