Skip to content

Commit

Permalink
Merge pull request #272 from crazy-max/virtual-env
Browse files Browse the repository at this point in the history
Add virtual-env workflow
  • Loading branch information
CrazyMax authored and GitHub committed Jan 15, 2021
2 parents 4a531fa + 4643aec commit 2db03de
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 2db03de

Please sign in to comment.