Merge pull request #144 from remerge/CORE-1347-investigate-possible-g… #211
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: | |
| pull_request: | |
| push: | |
| branches: [main, master] | |
| permissions: | |
| actions: none | |
| checks: none | |
| contents: read | |
| deployments: none | |
| discussions: none | |
| id-token: none | |
| issues: none | |
| packages: none | |
| pages: none | |
| pull-requests: none | |
| repository-projects: none | |
| security-events: none | |
| statuses: none | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| # https://github.com/actions/checkout/releases | |
| uses: actions/checkout@v5 | |
| - name: Setup SSH agent | |
| # https://github.com/webfactory/ssh-agent/releases | |
| uses: webfactory/[email protected] | |
| with: | |
| ssh-private-key: "${{ secrets.DEPLOY_USER_SSH_KEY }}" | |
| - name: Setup Git | |
| run: | | |
| curl -f -sL --retry 5 --retry-delay 1 https://api.github.com/meta | jq -r '"github.com "+.ssh_keys[]' >> ~/.ssh/known_hosts | |
| git config --global url."[email protected]:".insteadOf "https://github.com/" | |
| git config --global advice.detachedHead false | |
| - name: Load envrc | |
| # https://github.com/HatsuneMiku3939/direnv-action/releases | |
| uses: HatsuneMiku3939/direnv-action@v1 | |
| - name: Install project dependencies | |
| run: make install | |
| - name: Run pre-commit checks | |
| # https://github.com/pre-commit/action/releases | |
| uses: pre-commit/[email protected] |