rename value to val in dataframe #31
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: ["*"] | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: '1' | |
| - uses: julia-actions/cache@v2 | |
| - name: Install JuliaFormatter | |
| run: | | |
| julia -e 'import Pkg; Pkg.add("JuliaFormatter")' | |
| - uses: pre-commit/action@v3.0.1 | |
| - run: git diff --output=format.patch --exit-code || { cat format.patch; false; } | |
| if: failure() | |
| - uses: actions/upload-artifact@v4 | |
| if: failure() | |
| with: | |
| name: format.patch | |
| path: format.patch |