Skip to content

Commit

Permalink
checks wf
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed Jan 27, 2025
1 parent 97d44d9 commit ef32f6f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 5 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run tests

on:
pull_request:
types: [ opened, synchronize, reopened ]
push:
branches: [ main ]

jobs:
run-checks:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.version }}

- name: Install Doc support tools
uses: DeLaGuardo/[email protected]
if: "startsWith (matrix.os, 'ubuntu')"
with:
bb: 'latest'

- name: Check docs
run: |
cp API.md API.md.orig
bb quickdoc
diff API.md.orig API.md
10 changes: 5 additions & 5 deletions .github/workflows/tests-run.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Run tests

on:
pull_request:
types: [ opened, synchronize, reopened ]
push:
branches: [ main ]
# on:
# pull_request:
# types: [ opened, synchronize, reopened ]
# push:
# branches: [ main ]

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
Expand Down

0 comments on commit ef32f6f

Please sign in to comment.