Skip to content

Commit

Permalink
test automate anzsic creation
Browse files Browse the repository at this point in the history
  • Loading branch information
asiripanich committed Oct 23, 2024
1 parent a51732d commit 618ec70
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/tidy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Tidy ANZSIC

on:
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

- name: Run tidy_anzsic.py
run: python tidy_anzsic.py

3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
polars==1.10.0
pyarrow==17.0.0
fastexcel==0.12.0
2 changes: 2 additions & 0 deletions tidy_anzsic.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import polars as pl

0 comments on commit 618ec70

Please sign in to comment.