Skip to content

Commit

Permalink
Merge pull request #129 from CrossTheRoadElec/update-actions-node16
Browse files Browse the repository at this point in the history
Update CI.yml
  • Loading branch information
JCaporuscio authored May 17, 2023
2 parents 156cf48 + aa0e451 commit 15703cf
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip'
- name: Install Python Dependencies
run: |
pip install -r requirements.txt
Expand All @@ -21,28 +22,29 @@ jobs:
run: |
make html
- name: Archive HTML
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: phoenix-html
path: build/html/
- name: Build PDF
run: |
make latexpdf
- name: Archive PDF
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: phoenix-pdf
path: build/latex/phoenix.pdf
check-links:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Checkout dev
run: |
git fetch origin dev --depth=1
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'pip'
- name: Install Dependencies
run: |
pip install -r requirements.txt
Expand All @@ -52,7 +54,7 @@ jobs:
check-spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: misspell
uses: reviewdog/action-misspell@v1
with:
Expand Down

0 comments on commit 15703cf

Please sign in to comment.