Fix GitHub Actions
This commit is contained in:
parent
687b67a6a2
commit
a0a08073bc
3 changed files with 16 additions and 0 deletions
4
.github/workflows/deploying.yml
vendored
4
.github/workflows/deploying.yml
vendored
|
|
@ -13,6 +13,10 @@ jobs:
|
||||||
channel: ['beta', 'release']
|
channel: ['beta', 'release']
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: '2.7'
|
||||||
|
bundler-cache: true
|
||||||
- name: Installing packages
|
- name: Installing packages
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
|
|
|
||||||
8
.github/workflows/linting.yml
vendored
8
.github/workflows/linting.yml
vendored
|
|
@ -7,6 +7,10 @@ jobs:
|
||||||
runs-on: macos-12
|
runs-on: macos-12
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: '2.7'
|
||||||
|
bundler-cache: true
|
||||||
- name: Installing packages
|
- name: Installing packages
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
|
|
@ -23,6 +27,10 @@ jobs:
|
||||||
runs-on: macos-12
|
runs-on: macos-12
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: '2.7'
|
||||||
|
bundler-cache: true
|
||||||
- name: Installing packages
|
- name: Installing packages
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
|
|
|
||||||
4
.github/workflows/testing.yml
vendored
4
.github/workflows/testing.yml
vendored
|
|
@ -7,6 +7,10 @@ jobs:
|
||||||
runs-on: macos-12
|
runs-on: macos-12
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: '2.7'
|
||||||
|
bundler-cache: true
|
||||||
- name: Installing packages
|
- name: Installing packages
|
||||||
run: |
|
run: |
|
||||||
brew update
|
brew update
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue