Skip to content

Commit

Permalink
adding manual workflow dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
jac18281828 committed Apr 8, 2024
1 parent bd28b20 commit 84508f2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Coverage
on: [pull_request, push]
on: [workflow_dispatch, pull_request, push]
jobs:
coverage:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Lint
on:
workflow_dispatch:
push:
branches:
- main
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Tests
on:
workflow_dispatch:
push:
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test": "echo \"Error: no test specified\" && exit 1",
"prettier:check": "prettier --check \"(contracts|test|script)/**.sol\"",
"prettier:fix": "prettier --write \"(contracts|test|script)/**.sol\"",
"lint": "solhint contracts/**/*.sol test/**/*.sol script/**/*.sol"
"lint": "solhint 'contracts/**/*.sol' 'test/**/*.sol' 'script/**/*.sol'"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 84508f2

Please sign in to comment.