Skip to content

Commit 3414988

Browse files
authored
Merge pull request #24 from vim-denops/try-fix-ci
Separate repository checkout path and denops.vim
2 parents ba90c5f + 49b7f0c commit 3414988

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: deno
22

33
env:
44
DENO_VERSION: 1.x
5-
DENOPS_PATH: "./denops.vim"
5+
DENOPS_PATH: "../denops.vim"
66

77
on:
88
schedule:
9-
- cron: '0 7 * * 0'
9+
- cron: "0 7 * * 0"
1010
push:
1111
branches:
1212
- main
@@ -53,12 +53,18 @@ jobs:
5353
test:
5454
runs-on: ubuntu-20.04
5555

56+
defaults:
57+
run:
58+
working-directory: ./repo
59+
5660
steps:
5761
- uses: actions/checkout@v2
62+
with:
63+
path: "./repo"
5864
- uses: actions/checkout@v2
5965
with:
6066
repository: "vim-denops/denops.vim"
61-
path: "denops.vim"
67+
path: "./denops.vim"
6268
- uses: denoland/setup-deno@main
6369
with:
6470
deno-version: ${{ env.DENO_VERSION }}

0 commit comments

Comments
 (0)