您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

29 行
510 B

  1. name: E2E tests
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v1
  8. - name: Set up Python
  9. uses: actions/setup-python@v1
  10. with:
  11. python-version: 3.8
  12. - name: Prepare tests
  13. run: |
  14. sudo apt install ruby
  15. sudo gem install ronn
  16. pip install -U setuptools pip
  17. cd manpage && ronn kosmorro.1.md && cd ..
  18. - name: E2E tests
  19. run: |
  20. export ENVIRONMENT="CI"
  21. bash .scripts/tests-e2e.sh