integration_test.yml 365 B

1234567891011121314151617181920
  1. name: integration_test
  2. on:
  3. push:
  4. branches: [ main ]
  5. pull_request:
  6. branches: [ main ]
  7. env:
  8. CARGO_TERM_COLOR: always
  9. jobs:
  10. build:
  11. runs-on: macOS-latest
  12. steps:
  13. - uses: actions/checkout@v2
  14. - name: Run frontend tests
  15. run: cd frontend/rust-lib && cargo test
  16. - name: Run shared-lib tests
  17. run: cd shared-lib && cargo test