mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 19:48:31 +02:00
Fix YAML syntax
This commit is contained in:
parent
8cd555b96c
commit
5ed57eb341
3 changed files with 47 additions and 41 deletions
4
.github/actions/run_tests.yml
vendored
4
.github/actions/run_tests.yml
vendored
|
@ -1,3 +1,7 @@
|
|||
name: run jrnl tests
|
||||
description: Runs all jrnl tests on multiple platforms
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- run: git config --global core.autocrlf false
|
||||
- uses: actions/checkout@v2
|
||||
|
|
3
.github/workflows/testing_prs.yaml
vendored
3
.github/workflows/testing_prs.yaml
vendored
|
@ -34,4 +34,5 @@ jobs:
|
|||
matrix:
|
||||
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
|
||||
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
||||
steps: ./.github/actions/run_tests.yml
|
||||
steps:
|
||||
- uses: ./.github/actions/run_tests.yml
|
||||
|
|
3
.github/workflows/testing_schedule.yaml
vendored
3
.github/workflows/testing_schedule.yaml
vendored
|
@ -19,4 +19,5 @@ jobs:
|
|||
matrix:
|
||||
python-version: [ 3.7, 3.8, 3.9, '3.10', 3.11-dev ]
|
||||
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
||||
steps: ./.github/actions/run_tests.yml
|
||||
steps:
|
||||
- uses: ./.github/actions/run_tests.yml
|
||||
|
|
Loading…
Add table
Reference in a new issue