Switched to using the statsmodels array api #899
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: Linting and formatting | ||
| on: | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| concurrency: | ||
| group: ${{ github.ref }}-${{ github.workflow }} | ||
| cancel-in-progress: true | ||
| jobs: | ||
| build: | ||
| name: MegaLinter | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout Code | ||
| uses: actions/checkout@v2 | ||
| - name: MegaLinter | ||
| id: ml | ||
| uses: oxsecurity/megalinter/flavors/python@v6 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For detailed check status | ||
| - name: Archive production artifacts | ||
| if: ${{ success() }} || ${{ failure() }} | ||
|
Check warning on line 27 in .github/workflows/lint-format.yaml
|
||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: MegaLinter reports | ||
| path: | | ||
| megalinter-reports | ||
| mega-linter.log | ||