Skip to content

Commit 1e24c8b

Browse files
seansainSean Sain
authored andcommitted
Create tfproviderlint.yml with working github action
1 parent 80c9aeb commit 1e24c8b

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This is a basic workflow to run tfproviderlint
2+
name: tfproviderlint
3+
4+
# Controls when the action will run. Triggers the workflow on push or pull request
5+
# events but only for the master branch
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
13+
jobs:
14+
# This workflow contains a single job called "build"
15+
build:
16+
# The type of runner that the job will run on
17+
runs-on: ubuntu-latest
18+
19+
# Steps represent a sequence of tasks that will be executed as part of the job
20+
steps:
21+
- uses: actions/[email protected]
22+
- uses: bflad/tfproviderlint-github-action@master
23+
with:
24+
args: ./...

0 commit comments

Comments
 (0)