File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2121 steps :
2222 - uses : actions/checkout@v4
2323
24- - name : Inspect cache
25- shell : bash
26- run : |
27- echo HOME IS $HOME
28- ls -lA $HOME
29-
3024 - name : Cache
3125 uses : actions/cache@v4
3226 timeout-minutes : 1
@@ -49,17 +43,40 @@ jobs:
4943 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > $installer
5044 bash $installer --default-toolchain $(cat rust-toolchain) -y
5145
52- - name : Test (dev)
46+ # - name: Test (dev)
47+ # shell: bash
48+ # env:
49+ # FMT: 'false'
50+ # LINT: 'false'
51+ # DOC: 'true'
52+ # BUILD: 'true'
53+ # TEST: 'true'
54+ # BUILD_FLAGS: '--locked'
55+ # TEST_FLAGS: '--no-fail-fast'
56+ # run: ./test.sh
57+
58+ - name : Simple test
59+ shell : bash
60+ run : cargo test --no-default-features
61+
62+ - name : Inspect directories
5363 shell : bash
54- env :
55- FMT : ' false'
56- LINT : ' false'
57- DOC : ' true'
58- BUILD : ' true'
59- TEST : ' true'
60- BUILD_FLAGS : ' --locked'
61- TEST_FLAGS : ' --no-fail-fast'
62- run : ./test.sh
64+ run : |
65+ echo HOME IS $HOME
66+ ls -lA $HOME
67+ echo
68+ echo
69+
70+ echo CARGO $HOME/.cargo
71+ ls -lA $HOME/.cargo
72+ ls -lA $HOME/.cargo/registry
73+ ls -lA $HOME/.cargo/git
74+ echo
75+ echo
76+
77+ echo TARGET
78+ ls -lA target
79+ ls -lA target/debug
6380
6481 # - name: Test (release)
6582 # shell: bash
You can’t perform that action at this time.
0 commit comments