Remove extraneous and broken self-imposed 20ms sleep (nominally-50/s-rate limit) for each EFI variable read #214
This file contains 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": "pull-request", | |
"on": { | |
"push": { "branches": "main" }, | |
"pull_request": { "branches": "main" }, | |
}, | |
"jobs": { | |
"linux": { | |
"runs-on": "ubuntu-latest", | |
"strategy": { | |
"fail-fast": false, | |
"matrix": { | |
"container": [ | |
"f33", "f34", "f35", "f36", "centos8", "centos9", | |
], | |
}, | |
}, | |
"container": "vathpela/efi-ci:${{ matrix.container }}-x64", | |
"steps": [ | |
{ "uses": "actions/checkout@v2" }, | |
{ "run": "make all test" }, | |
{ "run": "make abicheck" }, | |
], | |
}, | |
}, | |
} |