feat: e2e testing #1
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 builddep -y ci/readymade.spec | |
| dnf install -y isotovideo edk2-ovmf | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| - name: Run tests | |
| run: cd test && ./test.sh |