Revert "fix init weights issue for critic/reward model (#983)" #881
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: Formatting | |
| on: | |
| push: | |
| branches: | |
| - 'staging**' | |
| pull_request: | |
| branches: | |
| '**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| # formatting and basic install on cpu-only machine | |
| formatting: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: environment | |
| run: | | |
| which python | |
| python --version | |
| pip install pre-commit>=2.20.0 | |
| - name: Formatting checks | |
| run: | | |
| pre-commit run --all-files |