test.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. on:
  2. push:
  3. branches: [staging, trying]
  4. pull_request:
  5. name: Test
  6. jobs:
  7. tests:
  8. runs-on: ubuntu-22.04
  9. needs: [check-msrv, test-msrv, test-stable, clippy]
  10. steps:
  11. - name: Done
  12. run: exit 0
  13. check-msrv:
  14. runs-on: ubuntu-22.04
  15. steps:
  16. - uses: actions/checkout@v2
  17. - name: Run Checks MSRV
  18. run: ./ci.sh check msrv
  19. test-msrv:
  20. runs-on: ubuntu-22.04
  21. steps:
  22. - uses: actions/checkout@v2
  23. - name: Run Tests MSRV
  24. run: ./ci.sh test msrv
  25. clippy:
  26. runs-on: ubuntu-22.04
  27. steps:
  28. - uses: actions/checkout@v2
  29. - name: Run Clippy
  30. run: ./ci.sh clippy
  31. test-stable:
  32. runs-on: ubuntu-22.04
  33. steps:
  34. - uses: actions/checkout@v2
  35. - name: Run Tests stable
  36. run: ./ci.sh test stable
  37. test-nightly:
  38. runs-on: ubuntu-22.04
  39. continue-on-error: true
  40. steps:
  41. - uses: actions/checkout@v2
  42. - name: Run Tests nightly
  43. run: ./ci.sh test nightly
  44. #check-stable:
  45. #runs-on: ubuntu-22.04
  46. #steps:
  47. #- uses: actions/checkout@v2
  48. #- name: Run Tests
  49. #run: ./ci.sh check stable
  50. #check-nightly:
  51. #runs-on: ubuntu-22.04
  52. #continue-on-error: true
  53. #steps:
  54. #- uses: actions/checkout@v2
  55. #- name: Run Tests
  56. #run: ./ci.sh check nightly