chore(ci): upgrade to v5-beta #47
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Workflow for Codecov example-python | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Ruby latest | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 'head' | |
- name: Install dependencies | |
run: bundle install | |
- name: Run tests and collect coverage | |
run: bundle exec rake | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} |