Skip to content

Commit

Permalink
format workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmarkow committed Sep 28, 2023
1 parent 681f64f commit 472e5c2
Showing 1 changed file with 22 additions and 22 deletions.
44 changes: 22 additions & 22 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,27 +14,27 @@ jobs:
strategy:
matrix:
ruby:
- '3.2.2'
- "3.2.2"

steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install Espanso
run: |
sudo snap install espanso --classic --channel=latest/edge
- name: Register espanso as service
run: espanso service register
- name: Log Espanso State (for debugging)
run: espanso log
- name: Run the default task
run: bundle exec rake
- name: RSpec
run: bundle exec rspec
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install Espanso
run: |
sudo snap install espanso --classic --channel=latest/edge
- name: Register espanso as service
run: espanso service register
- name: Log Espanso State (for debugging)
run: espanso log
- name: Run the default task
run: bundle exec rake
- name: RSpec
run: bundle exec rspec
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 472e5c2

Please sign in to comment.