-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5f4d6f
commit 8c6072e
Showing
1 changed file
with
20 additions
and
14 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,27 @@ | ||
name: Tidy ANZSIC | ||
|
||
on: | ||
push: | ||
push: | ||
|
||
jobs: | ||
tidy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Install dependencies | ||
run: pip install -r requirements.txt | ||
tidy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.x | ||
|
||
- name: Run notebook | ||
run: papermill tidy.ipynb tidy-rendered.ipynb | ||
- name: Install dependencies | ||
run: pip install -r requirements.txt | ||
|
||
- name: Run notebook | ||
run: papermill tidy.ipynb tidy-rendered.ipynb | ||
|
||
- name: Upload CSV artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: csv-artifact | ||
path: anzsic_2006.csv | ||
|