File tree Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Expand file tree Collapse file tree 1 file changed +8
-9
lines changed Original file line number Diff line number Diff line change 13
13
steps :
14
14
- name : Checkout sources
15
15
uses : actions/checkout@v2
16
-
16
+
17
17
- name : Download OVMF
18
18
run : |
19
19
# Save the current branch
@@ -29,10 +29,10 @@ jobs:
29
29
git checkout travis-temp
30
30
# Move the firmware files to the right directory
31
31
mv -v *.fd uefi-test-runner
32
-
32
+
33
33
- name : Install qemu
34
34
run : sudo apt-get install qemu -y
35
-
35
+
36
36
- name : Install latest nightly
37
37
uses : actions-rs/toolchain@v1
38
38
with :
52
52
- name : Run tests
53
53
run : ./build.py run --headless
54
54
working-directory : ./uefi-test-runner
55
-
55
+
56
56
lints :
57
57
name : Lints
58
58
runs-on : ubuntu-latest
@@ -63,18 +63,17 @@ jobs:
63
63
- name : Install latest nightly
64
64
uses : actions-rs/toolchain@v1
65
65
with :
66
+ profile : minimal
66
67
toolchain : nightly
67
- override : true
68
68
components : rustfmt, clippy
69
+ override : true
69
70
70
71
- name : Run cargo fmt
71
72
uses : actions-rs/cargo@v1
72
73
with :
73
74
command : fmt
74
75
args : --all -- --check
75
76
76
- - name : Run cargo clippy
77
- uses : actions-rs/cargo@v1
77
+ - uses : actions-rs/clippy-check@v1
78
78
with :
79
- command : clippy
80
- args : -- -D warnings
79
+ token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments