Skip to content

Commit

Permalink
fix windows tests, minor action update
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed May 13, 2021
1 parent 5385148 commit 3221618
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ name: Check DVC GitHub Action
on: [push]
jobs:
check:
defaults:
run:
shell: bash
strategy:
matrix:
system:
Expand All @@ -10,12 +13,12 @@ jobs:
- windows-latest
include:
- system: ubuntu-18.04
container: ubuntu:18.04
container: ubuntu:18.04
runs-on: ${{ matrix.system }}
container: ${{ matrix.container }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
if: matrix.container == 'ubuntu:18.04'
with:
node-version: '12'
Expand All @@ -31,7 +34,6 @@ jobs:
with:
version: '1.0.1'
- name: test DVC specific version
if: matrix.system != 'windows'
run: |
DVC_VER=$(dvc --version)
if [ $DVC_VER != '1.0.1' ]; then
Expand All @@ -40,7 +42,6 @@ jobs:
- name: local action with defaults
uses: ./
- name: test DVC latest version
if: matrix.system != 'windows'
run: |
DVC_VER=$(dvc --version)
if [ $DVC_VER == '1.0.1' ]; then
Expand Down

0 comments on commit 3221618

Please sign in to comment.