Skip to content

Commit

Permalink
Add virtual-env workflow
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
  • Loading branch information
CrazyMax committed Jan 15, 2021
1 parent 4a531fa commit 4643aec
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/virtual-env.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4643aec

Please sign in to comment.