Skip to content

Merge pull request #301 from chrisccoulson/efi-add-ms-uefi-2023-ca #717

Merge pull request #301 from chrisccoulson/efi-add-ms-uefi-2023-ca

Merge pull request #301 from chrisccoulson/efi-add-ms-uefi-2023-ca #717

Workflow file for this run

name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
tests:
runs-on: ubuntu-20.04
strategy:
matrix:
goversion:
- 1.18
- stable
steps:
- name: Set up Go ${{ matrix.goversion }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.goversion }}
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y sbsigntool
sudo snap install core core18
sudo snap install --edge tpm2-simulator-chrisccoulson
- name: Build
run: go build -v
- name: Test
run: ./run-tests --with-mssim
- name: Go vet
run: go vet