[fix][fix] Update license to match Trove classifier (#2322) #836
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: Check Base Resources | |
| on: | |
| push: | |
| tags: | |
| - "*.*.*" | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - 'fixlib/**' | |
| - 'plugins/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| basecheck: | |
| name: "basecheck" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| architecture: 'x64' | |
| - name: Install Dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| ./setup_venv.sh | |
| - name: Run tests | |
| run: | | |
| source venv/bin/activate | |
| python3 ./tools/basechecker.py html > basecheck.html | |
| - name: Archive base resource coverage results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: basecheck | |
| path: ./basecheck.html |