Skip to content

Commit 2797f67

Browse files
authored
Fix docs site for fideslang 2.0.0 (#154)
* Add a GitHub CI check to detect empty lines in CSV export * Move CI check to a separate action (duh) * Tweak action name * Debug CI command... * Polish CI logs * Re-run export (scripts/export_default_taxonomy.py) * Update CHANGELOG
1 parent 78dd8ca commit 2797f67

File tree

14 files changed

+853
-1340
lines changed

14 files changed

+853
-1340
lines changed

.github/workflows/pr_checks.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,3 +119,19 @@ jobs:
119119

120120
- name: Run Tests
121121
run: nox -s "tests-${{ matrix.python_version }}(pyyaml_version='${{ matrix.pyyaml_version }}', pydantic_version='${{ matrix.pydantic_version }}')"
122+
123+
CSV-Checks:
124+
runs-on: ubuntu-latest
125+
steps:
126+
- name: Checkout
127+
uses: actions/checkout@v3
128+
129+
- name: Check CSV Files
130+
run: |
131+
echo "Check all data_files/*.csv for any empty lines..."
132+
ls -l data_files/*.csv
133+
if grep -n -E '^$' data_files/*.csv; then
134+
echo "Error: empty lines found (see grep matches above)"
135+
exit 1
136+
fi
137+
echo "Success!"

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ The types of changes are:
1414
- `Fixed` for any bug fixes.
1515
- `Security` in case of vulnerabilities.
1616

17-
## [Unrelease](https://github.com/ethyca/fideslang/compare/2.0.0...main)
17+
## [Unreleased](https://github.com/ethyca/fideslang/compare/2.0.0...main)
18+
19+
### Fixed
20+
21+
- Fix docs site for fideslang 2.0.0 [#154](https://github.com/ethyca/fideslang/pull/154)
1822

1923
## [2.0.0](https://github.com/ethyca/fideslang/compare/1.4.4...2.0.0)
2024

data_files/data_categories.csv

Lines changed: 87 additions & 173 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)