Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
spowelljr committed Nov 13, 2024
1 parent c04524e commit 8c91b3c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/kvm-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "kvm-check"
on:
workflow_dispatch:
schedule:
# every Wednesday at around 3 am pacific/10 am UTC
- cron: "0 10 * * 3"
env:
GOPROXY: https://proxy.golang.org
GO_VERSION: '1.23.2'
permissions:
contents: read

jobs:
kvm-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed
with:
go-version: ${{env.GO_VERSION}}
- name: kvm-check
run: |
egrep -c '(vmx|svm)' /proc/cpuinfo

0 comments on commit 8c91b3c

Please sign in to comment.