We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d10259b commit 68fadc2Copy full SHA for 68fadc2
.github/workflows/test.yml
@@ -6,6 +6,9 @@ on:
6
pull_request:
7
branches: [main]
8
9
+env:
10
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
11
+
12
jobs:
13
build:
14
runs-on: ${{ matrix.platform }}
@@ -24,8 +27,11 @@ jobs:
24
27
python-version: ${{ matrix.python-version }}
25
28
- name: Install packages
26
29
run: |
- pip install .
30
+ pip install '.[qa]'
31
pip install mypy pytest
32
- name: Run Tests
33
34
pytest tests
35
36
+ # - name: Setup tmate session
37
+ # uses: mxschmitt/action-tmate@v3
MANIFEST.in
@@ -1,2 +1 @@
1
-include Lib/gftools/util/GlyphsInfo *.xml
2
-exclude Lib/gftools/util/GlyphsInfo *.py
+global-include Glyph*xml
0 commit comments