We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 087b988 commit c44f460Copy full SHA for c44f460
.github/workflows/lint.yml renamed to .github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: lint
+name: CI
2
3
on:
4
push:
@@ -18,3 +18,13 @@ jobs:
18
- run: python -m pip install ./fluent.syntax ./fluent.runtime
19
- run: python -m flake8
20
- run: python -m mypy fluent.syntax/fluent fluent.runtime/fluent
21
+ test:
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ - uses: actions/setup-python@v5
26
+ with:
27
+ python-version: 3.9
28
+ - run: python -m pip install ./fluent.syntax ./fluent.runtime
29
+ - run: python -m unittest discover -s fluent.syntax
30
+ - run: python -m unittest discover -s fluent.runtime
.github/workflows/fluent.integration.yml
0 commit comments