File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : syntax tests
1+ name : fluent. syntax
22
33on :
44 # Trigger the workflow on push or pull request,
3232 working-directory : ./fluent.syntax
3333 run : |
3434 ./runtests.py
35+ syntax :
36+ name : flake8
37+ runs-on : ubuntu-latest
38+ steps :
39+ - uses : actions/checkout@v2
40+ - uses : actions/setup-python@v2
41+ with :
42+ python-version : 3.7
43+ - name : Install dependencies
44+ run : |
45+ python -m pip install --upgrade pip
46+ python -m pip install flake8==3.7.9
47+ - name : lint
48+ working-directory : ./fluent.syntax
49+ run : |
50+ flake8
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1919 'Programming Language :: Python :: 3.5' ,
2020 ],
2121 packages = ['fluent' , 'fluent.runtime' ],
22- # These should also be duplicated in tox.ini and ../.travis .yml
22+ # These should also be duplicated in tox.ini and /.github/workflows/fluent.runtime .yml
2323 install_requires = [
2424 'fluent.syntax>=0.17,<0.18' ,
2525 'attrs' ,
Original file line number Diff line number Diff line change 1818 'Programming Language :: Python :: 3.5' ,
1919 ],
2020 packages = ['fluent' , 'fluent.syntax' ],
21- # These should also be duplicated in tox.ini and ../.travis .yml
21+ # These should also be duplicated in tox.ini and /.github/workflow/fluent.syntax .yml
2222 tests_require = ['six' ],
2323 test_suite = 'tests.syntax'
2424 )
You can’t perform that action at this time.
0 commit comments