R packages correct the installation #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: pre-commit | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'master' | |
| concurrency: | |
| group: pre-commit-${{ github.ref }}-1 | |
| # main should run through entire queue of commits for debugging | |
| cancel-in-progress: ${{ github.ref_name != 'main'}} | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: "3.11" | |
| architecture: "x64" | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pre-commit | |
| key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}- | |
| - name: Install system dependencies | |
| run: | | |
| pip install --upgrade pip wheel setuptools | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v2.0.0 | |
| continue-on-error: true | |
| - name: Commit files | |
| run: | | |
| if [[ `git status --porcelain --untracked-files=no` ]]; then | |
| git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git checkout -- .github/workflows | |
| git commit -m "pre-commit" -a | |
| fi | |
| - name: Push changes | |
| uses: ad-m/github-push-action@master | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: ${{ github.ref }} | |
| - name: Check pre-commit | |
| uses: pre-commit/action@v2.0.0 |