Run edgetest #120
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs edgetest on datacompy @ 17:30 UTC Fridays. | |
# https://github.com/edgetest-dev/run-edgetest-action | |
name: Run edgetest | |
on: | |
schedule: | |
- cron: '30 17 * * 5' | |
workflow_dispatch: # allows manual dispatch | |
jobs: | |
edgetest: | |
runs-on: ubuntu-latest | |
name: running edgetest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: edgetest-sparkfix | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '8' | |
distribution: 'adopt' | |
- name: Install edgetest | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install edgetest edgetest-conda | |
- name: Run edgetest | |
run: | | |
edgetest -c pyproject.toml --export | |
# - id: run-edgetest | |
# uses: edgetest-dev/[email protected] | |
# with: | |
# edgetest-flags: '-c pyproject.toml --export' | |
# base-branch: 'edgetest-sparkfix' | |
# skip-pr: 'false' |