oops#2 #3
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: End to End Test | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: fedora:43 | |
| steps: | |
| - name: Install dependencies | |
| run: dnf install -y isotovideo edk2-ovmf git | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Install build dependencies | |
| run: dnf builddep -y ci/readymade.spec | |
| - name: Run tests | |
| run: cd test && ./test.sh |