chore: use the latest release of toml-test on CI

The CI task that corresponds to toml-test HEAD is currently failing.
Using the latest stable release is safer.
This commit is contained in:
ToruNiina 2022-05-22 15:40:54 +09:00
parent fdb228598d
commit e8f922a1b8

View File

@ -12,7 +12,7 @@ jobs:
cd tests/
g++ -std=c++11 -O2 -Wall -Wextra -Werror -I../ check_toml_test.cpp -o check_toml_test
export PATH=$(pwd):${PATH}
git clone https://github.com/BurntSushi/toml-test.git
git clone --depth 1 --branch v1.1.0 https://github.com/BurntSushi/toml-test.git
cd toml-test/
go install -v ./cmd/toml-test
cd -