Skip to content

Commit

Permalink
Added tests before release
Browse files Browse the repository at this point in the history
  • Loading branch information
NiclasHaderer committed Mar 17, 2024
1 parent 2d02364 commit 54d3f7d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Validate version
id: validate
Expand All @@ -24,6 +24,19 @@ jobs:
fi
echo "::set-output name=version::$VERSION"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run test
run: poetry run python tests/e2e.py

- name: Run compile script
run: |
./compile.sh ${{ steps.validate.outputs.version }}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 54d3f7d

Please sign in to comment.