Merge pull request #272 from crazy-max/virtual-env

Add virtual-env workflow
This commit is contained in:
CrazyMax 2021-01-15 19:17:18 +01:00 committed by GitHub
commit 2db03de115
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

32
.github/workflows/virtual-env.yml vendored Normal file
View File

@ -0,0 +1,32 @@
name: virtual-env
on:
workflow_dispatch:
schedule:
- cron: '0 10 * * *' # everyday at 10am
jobs:
os:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- ubuntu-20.04
- ubuntu-18.04
- ubuntu-16.04
steps:
-
name: Docker info
run: docker info
-
name: Docker buildx version
run: docker buildx version
-
name: containerd version
run: containerd --version
-
name: Dump context
if: always()
uses: crazy-max/ghaction-dump-context@v1