ci.yml 526 B

123456789101112131415161718192021222324252627282930
  1. name: CI
  2. on:
  3. push:
  4. branches: [ main, master, develop ]
  5. pull_request:
  6. branches: [ main, master, develop ]
  7. env:
  8. CARGO_TERM_COLOR: always
  9. jobs:
  10. test-ubuntu-latest:
  11. runs-on: ubuntu-latest
  12. steps:
  13. - uses: actions/checkout@v3
  14. - name: prepare
  15. run: |
  16. rustup component add clippy
  17. sudo apt-get install tcl8.6 tclx
  18. - name: Fmt
  19. run: make fmt
  20. - name: Clippy
  21. run: make clippy
  22. - name: Unit test
  23. run: make unit-test
  24. - name: Test
  25. run: make test