Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: resolve tar issues by updating to official @actions/cache #37

Merged
merged 3 commits into from
Aug 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/workflows/example-subfolders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ name: example-subfolders
on: [push]
jobs:
separate-actions:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
name: Test on ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
# typically we would use a SHA or branch name
Expand All @@ -24,7 +28,11 @@ jobs:
working-directory: examples/subfolders/client

separate-lines:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
name: Test on ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: ./
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ on: [push]

jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
name: Build and test on ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v1
Expand Down
Loading