Skip to content

Commit

Permalink
Create generate_dataset.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KKegel authored Dec 10, 2024
1 parent 8b5c3b9 commit 03feeb8
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/generate_dataset.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Generate Dataset Build

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Setup Java JDK
with:
# The Java version to set up. Takes a whole or semver Java version. See examples of supported syntax in README file
java-version: 21

- name: Run generate.sh
run: ./generate.sh

- uses: actions/upload-artifact@v4
with:
name: dataset_build
path: ./gen
retention-days: 7
overwrite: false
include-hidden-files: true

0 comments on commit 03feeb8

Please sign in to comment.