-
Notifications
You must be signed in to change notification settings - Fork 3
33 lines (29 loc) · 881 Bytes
/
Copy pathtest.yml
File metadata and controls
33 lines (29 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: test
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: '3.8'
- name: Verify python3.8 binary on PATH
run: python3.8 --version
- name: Install conversion backend (T17 smoke-import dependency)
run: pip install python-docx markdown
- name: Install pandoc (system binary; make doctor probes for it)
run: sudo apt-get update && sudo apt-get install -y pandoc
- name: Configure git core.fileMode false (make doctor expects this)
run: git config core.fileMode false
- run: make doctor
- run: make test