Skip to content

Commit 193b404

Browse files
authored
Successfully set up (#231)
1 parent 56a61c9 commit 193b404

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

__tests__/setup-go.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ describe('setup-go', () => {
684684
expect(logSpy).toHaveBeenCalledWith('Adding to the cache ...');
685685
expect(logSpy).toHaveBeenCalledWith('Added go to the path');
686686
expect(logSpy).toHaveBeenCalledWith(
687-
`Successfully setup go version ${versionSpec}`
687+
`Successfully set up Go version ${versionSpec}`
688688
);
689689
});
690690

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2091,7 +2091,7 @@ function run() {
20912091
}
20922092
let added = yield addBinToPath();
20932093
core.debug(`add bin ${added}`);
2094-
core.info(`Successfully setup go version ${versionSpec}`);
2094+
core.info(`Successfully set up Go version ${versionSpec}`);
20952095
}
20962096
// add problem matchers
20972097
const matchersPath = path_1.default.join(__dirname, '..', 'matchers.json');

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function run() {
3636

3737
let added = await addBinToPath();
3838
core.debug(`add bin ${added}`);
39-
core.info(`Successfully setup go version ${versionSpec}`);
39+
core.info(`Successfully set up Go version ${versionSpec}`);
4040
}
4141

4242
// add problem matchers

0 commit comments

Comments
 (0)