-
Notifications
You must be signed in to change notification settings - Fork 130
39 lines (35 loc) · 1018 Bytes
/
edgetest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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/run-edgetest-action@v1.5
with:
edgetest-flags: '-c pyproject.toml --export'
base-branch: ${{ github.ref_name }}
skip-pr: 'false'