Skip to content

Commit

Permalink
Merge/refactor fluent.syntax.yml and fluent.runtime.yml actions into …
Browse files Browse the repository at this point in the history
…ci.yml
  • Loading branch information
eemeli committed Mar 10, 2024
1 parent c44f460 commit 9943867
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 86 deletions.
22 changes: 21 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,31 @@ jobs:
- run: python -m mypy fluent.syntax/fluent fluent.runtime/fluent
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, pypy3.9]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
- run: python -m pip install ./fluent.syntax ./fluent.runtime
- run: python -m unittest discover -s fluent.syntax
- run: python -m unittest discover -s fluent.runtime
baseline:
runs-on: ubuntu-20.04 # https://github.com/actions/setup-python/issues/544
strategy:
matrix:
fluent-syntax:
- ./fluent.syntax
- fluent.syntax==0.19.0
- fluent.syntax==0.18.1 six
- fluent.syntax==0.17.0 six
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.6
- run: python -m pip install ${{ matrix.fluent-syntax }}
- run: python -m pip install ./fluent.runtime
- run: python -m unittest discover -s fluent.runtime
45 changes: 0 additions & 45 deletions .github/workflows/fluent.runtime.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/fluent.syntax.yml

This file was deleted.

0 comments on commit 9943867

Please sign in to comment.