85d966508c
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
464 B
YAML
25 lines
464 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main, master]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
sanity:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Sanity
|
|
run: |
|
|
test -f README.md || test -f Readme.md || test -f readme.md || test -f README
|
|
echo "Repository sanity OK"
|