File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 4
4
clippy_check :
5
5
runs-on : ubuntu-latest
6
6
steps :
7
- - uses : actions/checkout@v1
7
+ - uses : actions/checkout@v2
8
8
- run : rustup component add clippy
9
9
- uses : actions-rs/clippy-check@v1
10
10
with :
Original file line number Diff line number Diff line change @@ -35,13 +35,13 @@ jobs:
35
35
run : |
36
36
sudo apt-get update
37
37
sudo apt-get install -y postgresql-client
38
- - uses : actions/checkout@v1
38
+ - uses : actions/checkout@v2
39
39
- uses : actions-rs/toolchain@v1
40
40
with :
41
41
toolchain : nightly
42
42
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
45
45
env :
46
46
PGPASSWORD : " postgres"
47
47
- name : Run cargo-tarpaulin
Original file line number Diff line number Diff line change 6
6
audit :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v1
9
+ - uses : actions/checkout@v2
10
10
- uses : actions-rs/audit-check@v1
11
11
with :
12
12
token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -43,13 +43,15 @@ jobs:
43
43
run : |
44
44
sudo apt-get update
45
45
sudo apt-get install -y postgresql-client
46
- - uses : actions/checkout@v1
46
+ - uses : actions/checkout@v2
47
47
- uses : actions-rs/toolchain@v1
48
48
with :
49
49
profile : minimal
50
50
toolchain : ${{ matrix.rust }}
51
51
override : true
52
- - name : load test data
52
+ - name : List workspace
53
+ run : ls -lh /github/workspace
54
+ - name : Load test data
53
55
run : psql -U postgres -d postgres < /github/workspace/tests/load-data.sql
54
56
env :
55
57
PGPASSWORD : " postgres"
You can’t perform that action at this time.
0 commit comments