Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Test files compilation
name: Compile test files

on:
push:
Expand Down Expand Up @@ -54,6 +54,10 @@ jobs:
shell: bash
run: poetry run poe generate

- name: Compile the lib
shell: bash
run: poetry run poe generate_lib

- name: Publish the compiled files
shell: bash
run: |
Expand All @@ -62,6 +66,7 @@ jobs:
cp -r tests/output_betterproto tests_betterproto
cp -r tests/output_betterproto_pydantic tests_betterproto_pydantic
cp -r tests/output_reference tests_reference
git add tests_betterproto tests_betterproto_pydantic tests_reference
cp -r tests/output_lib lib
git add tests_betterproto tests_betterproto_pydantic tests_reference lib
git commit -m "Add compilation output"
git push --force origin compiled-test-files
Loading
Loading