fix(iso): include iso9660 in native initramfs (#129) #317
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: Test | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| pytest: | |
| name: Python Unit Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4 | |
| - uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install system dependencies | |
| run: sudo apt-get install -y xorriso dosfstools mtools squashfs-tools | |
| - name: Install Python dependencies | |
| run: pip install pytest PyYAML jsonschema | |
| - name: Run tests | |
| run: pytest tests/ -v | |
| env: | |
| # Lets TestActionPinsResolve verify pinned action SHAs against the | |
| # GitHub API. Without a token the shared runner IP is rate limited and | |
| # the check silently skips. | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |