Skip to content

Commit c96659e

Browse files
committed
test: check if dot is installed
1 parent 1545ce4 commit c96659e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,15 +133,15 @@ jobs:
133133
fail-fast: false
134134
matrix:
135135
os:
136-
- windows-2019
136+
- windows-2022
137137
- ubuntu-20.04
138-
- macos-10.15
138+
- macos-11
139139
compiler:
140140
- llvm
141141
- gcc
142142
# you can specify the version after `-` like `llvm-13.0.0`.
143143
include:
144-
- os: "windows-latest"
144+
- os: "windows-2022"
145145
compiler: "msvc"
146146
steps:
147147
- uses: actions/checkout@v2

src/doxygen/__tests__/doxygen.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ describe("setup-doxygen", () => {
1010
directory = await setupTmpDir("doxygen")
1111
})
1212

13-
it("should setup doxygen", async () => {
13+
it("should setup doxygen and dot", async () => {
1414
const installInfo = await setupDoxygen(getVersion("doxygen", undefined), directory, process.arch)
1515

1616
await testBin("doxygen", ["--version"], (installInfo as InstallationInfo | undefined)?.binDir)
17+
await testBin("dot", ["-V"])
1718
})
1819

1920
afterAll(async () => {

0 commit comments

Comments
 (0)