Skip to content

Commit

Permalink
Add Fhir package caching
Browse files Browse the repository at this point in the history
  • Loading branch information
JPercival committed Oct 16, 2024
1 parent 921ea25 commit 1d6a576
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: ~/.fhir
key: ${{ runner.os }}-fhir-${{ hashFiles('**/*.*') }}
restore-keys: |
${{ runner.os }}-fhir-
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
Expand Down Expand Up @@ -49,12 +55,6 @@ jobs:
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- uses: actions/cache@v4
with:
path: ~/.fhir
key: ${{ runner.os }}-fhir-${{ hashFiles('**/*.*') }}
restore-keys: |
${{ runner.os }}-fhir-
- run: pip install -r requirements.txt
working-directory: ./docs/src/doc
- run: mkdocs gh-deploy --force
Expand Down

0 comments on commit 1d6a576

Please sign in to comment.