We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5d467e commit 43f5d23Copy full SHA for 43f5d23
1 file changed
.github/workflows/syntax-tests.yml
@@ -0,0 +1,31 @@
1
+name: syntax tests
2
+
3
+on:
4
+ # Trigger the workflow on push or pull request,
5
+ # but only for the master branch
6
+ push:
7
+ branches:
8
+ - master
9
+ pull_request:
10
11
12
13
+jobs:
14
+ unit:
15
+ name: Syntax unit tests
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: actions/setup-python@v2
20
+ with:
21
+ python-version: 3.7
22
+ - name: Install dependencies
23
+ working-directory: ./fluent.syntax
24
+ run: |
25
+ python -m pip install wheel
26
+ python -m pip install --upgrade pip
27
+ python -m pip install .
28
+ - name: Test
29
30
31
+ ./runtests.py
0 commit comments