mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 19:48:31 +02:00
Check out repo before running local action
This commit is contained in:
parent
1e32b315e1
commit
ecebec0e96
3 changed files with 2 additions and 1 deletions
1
.github/actions/run_tests/action.yaml
vendored
1
.github/actions/run_tests/action.yaml
vendored
|
@ -4,7 +4,6 @@ runs:
|
|||
using: "composite"
|
||||
steps:
|
||||
- run: git config --global core.autocrlf false
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v2
|
||||
|
|
1
.github/workflows/testing_prs.yaml
vendored
1
.github/workflows/testing_prs.yaml
vendored
|
@ -35,4 +35,5 @@ jobs:
|
|||
python-version: [ 3.7, 3.8, 3.9, '3.10' ]
|
||||
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ./.github/actions/run_tests
|
||||
|
|
1
.github/workflows/testing_schedule.yaml
vendored
1
.github/workflows/testing_schedule.yaml
vendored
|
@ -20,4 +20,5 @@ jobs:
|
|||
python-version: [ 3.7, 3.8, 3.9, '3.10', 3.11-dev ]
|
||||
os: [ ubuntu-latest, macos-latest, windows-latest ]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: ./.github/actions/run_tests
|
||||
|
|
Loading…
Add table
Reference in a new issue