Updating syntax for matchers

This commit is contained in:
svartalf 2019-10-22 14:18:42 +03:00
parent 40ef48bb22
commit 9e78198b90
3 changed files with 5 additions and 4 deletions

View file

@ -8,7 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Problem matcher which will highlight warnings and errors in the cargo output
- Problem matcher to highlight warnings and errors in the cargo output
- Problem matcher to highlight difference messages in the `rustfmt` output
### Changed

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View file

@ -25,8 +25,8 @@ export async function run(actionInput: input.Input): Promise<void> {
async function main(): Promise<void> {
const matchersPath = path.join(__dirname, '.matchers');
console.log(`::[add-matcher]${path.join(matchersPath, 'rust.json')}`);
console.log(`::[add-matcher]${path.join(matchersPath, 'rustfmt.json')}`);
console.log(`::add-matcher::${path.join(matchersPath, 'rust.json')}`);
console.log(`::add-matcher::${path.join(matchersPath, 'rustfmt.json')}`);
const actionInput = input.get();