Skip to content

Commit 68fadc2

Browse files
committed
Test QA, why not
1 parent d10259b commit 68fadc2

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: [main]
88

9+
env:
10+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11+
912
jobs:
1013
build:
1114
runs-on: ${{ matrix.platform }}
@@ -24,8 +27,11 @@ jobs:
2427
python-version: ${{ matrix.python-version }}
2528
- name: Install packages
2629
run: |
27-
pip install .
30+
pip install '.[qa]'
2831
pip install mypy pytest
2932
- name: Run Tests
3033
run: |
3134
pytest tests
35+
36+
# - name: Setup tmate session
37+
# uses: mxschmitt/action-tmate@v3

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
include Lib/gftools/util/GlyphsInfo *.xml
2-
exclude Lib/gftools/util/GlyphsInfo *.py
1+
global-include Glyph*xml

0 commit comments

Comments
 (0)