提交了一篇最新的2025年论文,补充了按时间排列的里的论文 #22
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: Continuous Integration | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| name: "Test with Jekyll ${{ matrix.jekyll }}" | |
| runs-on: "ubuntu-latest" | |
| strategy: | |
| matrix: | |
| jekyll: ["~> 3.9", "~> 4.2"] | |
| env: | |
| JEKYLL_VERSION: ${{ matrix.jekyll }} | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - name: Set Up Ruby 2.7 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: 2.7 | |
| bundler-cache: true | |
| - name: Run tests | |
| run: script/cibuild |