Skip to content

Commit

Permalink
create new action that gets the size of the engines
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosuc3m authored Jan 7, 2025
1 parent cf7252f commit 40312c7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/jar_sizes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Get jar sizes
on:
push:
branches:
- main
paths:
- src/main/resources/availableDLVersions.json
- .github/workflows/jar_sizes.yml
pull_request:
branches: [ main ]
jobs:
build-and-run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Download all engines
run: |
python download-engines.py

0 comments on commit 40312c7

Please sign in to comment.