Skip to content

Update dependencies #74

Update dependencies

Update dependencies #74

Workflow file for this run

name: fluent.runtime
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
paths:
- .github/workflows/fluent.runtime.yml
- "fluent.runtime/**"
- "!fluent.runtime/docs/**"
pull_request:
branches:
- main
paths:
- .github/workflows/fluent.runtime.yml
- "fluent.runtime/**"
- "!fluent.runtime/docs/**"
jobs:
unit:
name: unit tests
runs-on: ubuntu-20.04 # https://github.com/actions/setup-python/issues/544
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, pypy3.9]
fluent-syntax: [0.18.1]
include:
- python-version: 3.9
fluent-syntax: 0.17.0
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
working-directory: ./fluent.runtime
run: |
python -m pip install wheel
python -m pip install --upgrade pip
python -m pip install fluent.syntax==${{ matrix.fluent-syntax }} six
python -m pip install .
- run: ./runtests.py
working-directory: ./fluent.runtime