增加动态扩缩容的机制 #44
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: Test Project | |
| on: | |
| push: | |
| branches: | |
| workflow_dispatch: | |
| jobs: | |
| test-project: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: uname -a | |
| - run: lsb_release -a | |
| - name: Setup | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: "1.23" | |
| - run: go version | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Test | |
| run: make test |