refactor: 提取 datetime_utils 中的共享 since_epoch() 辅助函数 #130
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: run integration tests | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "master", "develop" ] | |
| pull_request: | |
| branches: [ "master", "develop" ] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: build | |
| run: | | |
| cargo build | |
| - name: run test | |
| run: | | |
| python3 integration_tests/scripts/run_test.py |