Skip to content

Commit

Permalink
Unzip .gz files in parallel as part of action
Browse files Browse the repository at this point in the history
  • Loading branch information
gschivley committed May 15, 2024
1 parent d36aa00 commit cacd92c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ jobs:
uses: actions/checkout@v4
# with:
# fetch-depth: 2

- name: Unzip all .gz files in parallel
run: |
find . -type f -name '*.gz' | xargs -n 1 -P 4 gunzip
- uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit cacd92c

Please sign in to comment.