Skip to content

Display build status in Readme #3

Display build status in Readme

Display build status in Readme #3

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
conditional-job:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
if: !contains(github.event.head_commit.message, 'ci:skip')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Setup Python"
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: "Install Dependencies"
run: pip install -r requirements.dev.txt
- name: "Build"
run: make build