feat(doc): Add MapSwipe documentations #4
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: CI | |
| on: | |
| pull_request: | |
| jobs: | |
| pre_commit_checks: | |
| name: Pre-Commit checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Install pre-commit and run | |
| uses: pre-commit/[email protected] | |
| with: | |
| extra_args: --all-files --hook-stage manual --show-diff-on-failure | |
| - name: Install lychee | |
| run: | | |
| mkdir ./lychee-install | |
| cd ./lychee-install | |
| curl -L https://github.com/lycheeverse/lychee/releases/latest/download/lychee-x86_64-unknown-linux-gnu.tar.gz -o lychee.tar.gz | |
| tar -xzf lychee.tar.gz | |
| mv lychee /usr/local/bin/ | |
| lychee --version | |
| cd ../ | |
| rm -rf ./lychee-install | |
| # TODO: Use pre-commit instead of this | |
| - name: Run lychee | |
| run: | | |
| lychee --root-dir $(pwd)/ ./ |