Skip to content

Commit 7796a49

Browse files
authored
don't run nightly tests in ci (#346)
Co-authored-by: Christopher Doris <github.com/cjdoris>
1 parent 2be33fd commit 7796a49

File tree

3 files changed

+8
-11
lines changed

3 files changed

+8
-11
lines changed

Diff for: .github/workflows/tests-nightly.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
name: Tests (nightly)
22

33
on:
4-
pull_request:
5-
branches:
6-
- main
7-
push:
8-
branches:
9-
- main
10-
tags:
11-
- '*'
4+
workflow_dispatch:
5+
inputs:
6+
jl_version:
7+
description: Julia version (e.g. nightly or ~1.9.0-0)
8+
required: true
9+
default: nightly
1210

1311
jobs:
1412
tests:
@@ -24,7 +22,7 @@ jobs:
2422
- uses: actions/checkout@v2
2523
- uses: julia-actions/setup-julia@v1
2624
with:
27-
version: ${{ matrix.jlversion }}
25+
version: ${{ inputs.jl_version }}
2826
arch: ${{ matrix.arch }}
2927
- uses: actions/cache@v1
3028
env:

Diff for: .github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
strategy:
5454
matrix:
5555
os: [ubuntu-latest, windows-latest, macos-latest]
56-
pyversion: ["3.7", "3.10"]
56+
pyversion: ["3.7", "3.11"]
5757
steps:
5858
- uses: actions/checkout@v3
5959
- name: Set up Python ${{ matrix.pyversion }}

Diff for: README.md

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
[![Stable Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://cjdoris.github.io/PythonCall.jl/stable)
55
[![Dev Documentation](https://img.shields.io/badge/docs-dev-blue.svg)](https://cjdoris.github.io/PythonCall.jl/dev)
66
[![Tests](https://github.com/cjdoris/PythonCall.jl/actions/workflows/tests.yml/badge.svg)](https://github.com/cjdoris/PythonCall.jl/actions/workflows/tests.yml)
7-
[![Tests (nightly)](https://github.com/cjdoris/PythonCall.jl/actions/workflows/tests-nightly.yml/badge.svg)](https://github.com/cjdoris/PythonCall.jl/actions/workflows/tests-nightly.yml)
87
[![Codecov](https://codecov.io/gh/cjdoris/PythonCall.jl/branch/main/graph/badge.svg?token=A813UUIHGS)](https://codecov.io/gh/cjdoris/PythonCall.jl)
98
[![PkgEval](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/P/PythonCall.svg)](https://juliaci.github.io/NanosoldierReports/pkgeval_badges/P/PythonCall.html)
109

0 commit comments

Comments
 (0)