Skip to content

Commit df8e131

Browse files
committed
add List workspace in stable test
1 parent e40d30d commit df8e131

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
clippy_check:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v1
7+
- uses: actions/checkout@v2
88
- run: rustup component add clippy
99
- uses: actions-rs/clippy-check@v1
1010
with:

.github/workflows/code-coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ jobs:
3535
run: |
3636
sudo apt-get update
3737
sudo apt-get install -y postgresql-client
38-
- uses: actions/checkout@v1
38+
- uses: actions/checkout@v2
3939
- uses: actions-rs/toolchain@v1
4040
with:
4141
toolchain: nightly
4242
override: true
43-
- name: load test data
44-
run: psql -U postgres -d postgres < /github/workspace/tests/load-data.sql
43+
- name: Load test data
44+
run: psql -U postgres -d postgres < tests/load-data.sql
4545
env:
4646
PGPASSWORD: "postgres"
4747
- name: Run cargo-tarpaulin

.github/workflows/security-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
audit:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v1
9+
- uses: actions/checkout@v2
1010
- uses: actions-rs/audit-check@v1
1111
with:
1212
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/stable-test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,15 @@ jobs:
4343
run: |
4444
sudo apt-get update
4545
sudo apt-get install -y postgresql-client
46-
- uses: actions/checkout@v1
46+
- uses: actions/checkout@v2
4747
- uses: actions-rs/toolchain@v1
4848
with:
4949
profile: minimal
5050
toolchain: ${{ matrix.rust }}
5151
override: true
52-
- name: load test data
52+
- name: List workspace
53+
run: ls -lh /github/workspace
54+
- name: Load test data
5355
run: psql -U postgres -d postgres < /github/workspace/tests/load-data.sql
5456
env:
5557
PGPASSWORD: "postgres"

0 commit comments

Comments
 (0)