Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
KarelZe committed Jan 7, 2024
2 parents 478fe41 + 8f161ab commit 6261f6c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 39 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
on:
push:
jobs:
build:
name: Build exectuable 📦
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt pyinstaller
- name: Build binary 🔢
run: pyinstaller "main.spec"
- name: Run conversion ↩️
run: .\dist\ms_teams_parser.exe -f ".\testdata\John Doe\IndexedDB\https_teams.microsoft.com_0.indexeddb.leveldb" -o "current_output.json"
# - name: Calculate diff 👽
# run: git diff --no-index --word-diff expected_output/john_doe.json current_output.json
39 changes: 0 additions & 39 deletions utils/test.py

This file was deleted.

0 comments on commit 6261f6c

Please sign in to comment.