deps: use humanize, fix pkg_resource issue #333
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04-arm | |
| strategy: | |
| matrix: | |
| include: | |
| - name: Lint | |
| command: make lint | |
| - name: Type-Check | |
| command: make type-check | |
| - name: Security-Check | |
| command: make security-check | |
| name: ${{ matrix.name }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Run ${{ matrix.name }} | |
| run: ${{ matrix.command }} |