Add checkout

This commit is contained in:
Danny McCormick
2019-07-23 15:15:46 -04:00
committed by GitHub
parent 3125a78d41
commit 5084e7ffbd

View File

@@ -12,6 +12,7 @@ See [action.yml](action.yml)
Basic: Basic:
```yaml ```yaml
actions: actions:
- uses: actions/checkout@latest
- uses: actions/setup-ruby@latest - uses: actions/setup-ruby@latest
with: with:
version: 2.x // Version range or exact version of a Ruby version to use, using semvers version range syntax. version: 2.x // Version range or exact version of a Ruby version to use, using semvers version range syntax.
@@ -27,6 +28,7 @@ jobs:
ruby: [ 2.x, 3.x ] ruby: [ 2.x, 3.x ]
name: Ruby ${{ matrix.ruby }} sample name: Ruby ${{ matrix.ruby }} sample
actions: actions:
- uses: actions/checkout@latest
- name: Setup ruby - name: Setup ruby
uses: actions/setup-ruby@latest uses: actions/setup-ruby@latest
with: with: