diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c066f2f0..d6b78f6e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,6 +5,7 @@ on: - v* branches: - main + - feat/addBtGTests pull_request: jobs: build: @@ -52,6 +53,33 @@ jobs: - name: go test run: go test -v ./pkg/... + integrationBtG: + needs: build + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Download file + run: | + wget https://download.lenovo.com/pccbbs/mobiles/n2yur17w.iso + + - name: Check PWD + run: | + pwd + + - name: Mount Image + id: mount-image + uses: damianperera/mount-image-action@v1 + with: + imagePath: /home/runner/work/converged-security-suite/converged-security-suite/n2yur17w.iso + mountPoint: /mnt/firmwareImage + + - name: Check Image + run: | + ls -l /mnt/firmwareImage + generateTemplates: needs: build runs-on: ubuntu-latest