Skip to content

Run edgetest

Run edgetest #164

Workflow file for this run

# 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:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
name: running edgetest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref_name }}
- name: Set up Python 3.10
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: '3.10'
channels: conda-forge
- name: Setup Java JDK
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
- id: run-edgetest
uses: edgetest-dev/[email protected]
with:
edgetest-flags: '-c pyproject.toml --export'
base-branch: ${{ github.ref_name }}
skip-pr: 'false'