Skip to content

Commit c44f460

Browse files
committed
Merge fluent.integration and lint actions into a single ci.yml
1 parent 087b988 commit c44f460

File tree

2 files changed

+11
-46
lines changed

2 files changed

+11
-46
lines changed

.github/workflows/lint.yml renamed to .github/workflows/ci.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint
1+
name: CI
22

33
on:
44
push:
@@ -18,3 +18,13 @@ jobs:
1818
- run: python -m pip install ./fluent.syntax ./fluent.runtime
1919
- run: python -m flake8
2020
- 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

-45
This file was deleted.

0 commit comments

Comments
 (0)