Skip to content

Commit

Permalink
yaamls
Browse files Browse the repository at this point in the history
  • Loading branch information
enricgrau committed Feb 5, 2024
1 parent 3ff6753 commit d7898c6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,25 @@ jobs:
OS: ubuntu-latest
PYTHON: '3.9'
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v4
with:
fetch-depth: ‘2’

- name: Setup Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: 3.7
python-version: 3.9

- name: Generate Report
run: |
pip install --user -r requirements.txt
pip install --user -r requirements_dev.txt
coverage run -m unittest
- name: Upload Coverage to Codecov
uses: codecov/[email protected]
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

#- name: Upload Coverage to Codecov
# uses: codecov/[email protected]
5 changes: 4 additions & 1 deletion .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""
NOT NEEDED ANYMORE. JUST COMMENTING FOR POSTERITY.
on: [push]
jobs:
Expand All @@ -20,4 +22,5 @@ jobs:
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper/paper.pdf
path: paper/paper.pdf
"""

0 comments on commit d7898c6

Please sign in to comment.