Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.
Open
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
2 changes: 1 addition & 1 deletion responses/08_new-job.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This will allow us to separate the build and test functions of our workflow into
4. In the newly created `test` job, include the following portions of your existing workflow:
```yaml
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2016]
Expand Down
4 changes: 2 additions & 2 deletions responses/11_use-download.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ _You can follow the manual steps below, or accept the suggestions in the followi
```yaml
test:
needs: build
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
...
```
1. Add a step to your `test` job that uses the `download-artifacts` action.
```yaml
test:
needs: build
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
...
steps:
- uses: actions/checkout@v2
Expand Down