Skip to content

Commit

Permalink
Added new workflow to analyze lineage notes
Browse files Browse the repository at this point in the history
  • Loading branch information
ciscorucinski committed Aug 9, 2023
1 parent ade6b5d commit df90568
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/lineage_notes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Analyze lineage notes

on:
push:
pull_request:
workflow_dispatch:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install packages
run: |
python -m pip install --upgrade pip
pip install pandas
- name: Analyze lineage notes file
run: ./analyze_lineage_notes.py
7 changes: 7 additions & 0 deletions analyze_lineage_notes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#! usr/bin/env python

import pandas as pd

# Will verify file format integrity
# - Will error if there are too many tab characters
pd.read_csv('lineage_notes.txt', delimiter='\t')

0 comments on commit df90568

Please sign in to comment.