Update CI

This commit is contained in:
Aaran Xu 2022-01-08 02:27:11 +08:00
parent be87d0f2f8
commit cf8d74aba1
3 changed files with 25 additions and 4 deletions

View File

@ -6,6 +6,7 @@ adaptor
adaptors adaptors
AddAssign AddAssign
Addr Addr
adfb
afdc afdc
aggregator aggregator
AGraph AGraph
@ -13,6 +14,7 @@ aliasability
alignof alignof
alloc alloc
allocator allocator
AlwaysEqual
Amir Amir
anotherusername anotherusername
APIs APIs
@ -49,6 +51,7 @@ BitXorAssign
Bjarne Bjarne
Boehm Boehm
bool bool
boolean
Boolean Boolean
Booleans Booleans
Bors Bors
@ -61,6 +64,8 @@ Cagain
callsite callsite
CamelCase CamelCase
cargodoc cargodoc
centric
chacha
ChangeColor ChangeColor
ChangeColorMessage ChangeColorMessage
charset charset
@ -148,6 +153,7 @@ Enums
eprintln eprintln
Erlang Erlang
ErrorKind ErrorKind
eval
executables executables
expr expr
extern extern
@ -170,8 +176,11 @@ formatter
formatters formatters
FrenchToast FrenchToast
FromIterator FromIterator
FromResidual
frontend frontend
getrandom
getter getter
getters
GGraph GGraph
GitHub GitHub
gitignore gitignore
@ -264,6 +273,7 @@ login
lookup lookup
loopback loopback
lossy lossy
Lukas
lval lval
macOS macOS
Matsakis Matsakis
@ -332,6 +342,8 @@ OptionalNumber
OsStr OsStr
OsString OsString
other's other's
otherinstall
OtherError
OutlinePrint OutlinePrint
overloadable overloadable
overread overread
@ -392,6 +404,7 @@ representable
request's request's
resizes resizes
resizing resizing
ReturnedError
retweet retweet
rewordings rewordings
rint rint
@ -421,6 +434,7 @@ ShrAssign
shouldn shouldn
Simula Simula
siphash siphash
SipHash
situps situps
sizeof sizeof
SliceIndex SliceIndex
@ -471,7 +485,6 @@ supertraits
TcpListener TcpListener
TcpStream TcpStream
templating templating
test_harness
test's test's
TextField TextField
That'd That'd
@ -543,6 +556,7 @@ WebSocket
whitespace whitespace
wildcard wildcard
wildcards wildcards
Wirth
workflow workflow
workspace workspace
workspaces workspaces
@ -550,6 +564,7 @@ Workspaces
wouldn wouldn
writeln writeln
WriteMessage WriteMessage
xcode
xpression xpression
yyyy yyyy
ZipImpl ZipImpl

View File

@ -1,5 +1,7 @@
#!/bin/bash #!/bin/bash
set -eu
aspell --version aspell --version
# Checks project Markdown files for spelling mistakes. # Checks project Markdown files for spelling mistakes.

View File

@ -1,4 +1,8 @@
#!/bin/bash
set -eu
for file in src/*.md ; do for file in src/*.md ; do
echo Checking references in $file echo Checking references in "$file"
cargo run --quiet --bin link2print < $file > /dev/null cargo run --quiet --bin link2print < "$file" > /dev/null
done done