Add problem 3178: Find the Child Who Has the Ball After K Seconds #1744
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: Progress | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: sudo apt-get update && sudo apt-get install --no-install-recommends libfontconfig-dev | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: rustup update | |
| - run: cargo run --package progress-tracker --release -- . _site | |
| - uses: actions/upload-pages-artifact@v3 | |
| deploy: | |
| needs: build | |
| permissions: | |
| id-token: write | |
| pages: write | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/deploy-pages@v4 |