Add Law professor as our faculty advisor (Fixes #127) #347
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: Codecov Workflow for elara-aerospace.com | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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 jekyll build | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_ORG_TOKEN }} |