File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 37
37
# TODO: check every members
38
38
- run : cargo clippy -p cargo --lib --no-deps -- -D warnings
39
39
40
+ # Ensure Cargo.lock is up-to-date
41
+ lockfile :
42
+ runs-on : ubuntu-latest
43
+ steps :
44
+ - uses : actions/checkout@v3
45
+ - run : rustup update stable && rustup default stable
46
+ - run : cargo update -p cargo --locked
47
+
40
48
test :
41
49
runs-on : ${{ matrix.os }}
42
50
env :
Original file line number Diff line number Diff line change 5
5
6
6
cd src/doc
7
7
8
- changes=$( git status --porcelain)
8
+ changes=$( git status --porcelain -- . )
9
9
if [ -n " $changes " ]
10
10
then
11
11
echo " git directory must be clean before running this script."
14
14
15
15
./build-man.sh
16
16
17
- changes=$( git status --porcelain)
17
+ changes=$( git status --porcelain -- . )
18
18
if [ -n " $changes " ]
19
19
then
20
- echo " Detected changes in man pages:"
20
+ echo " Detected changes of man pages in src/doc :"
21
21
echo " $changes "
22
22
echo
23
23
echo " Please run './build-man.sh' in the src/doc directory to rebuild the"
You can’t perform that action at this time.
0 commit comments