We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76aa5a commit 113d620Copy full SHA for 113d620
.github/workflows/build.yml
@@ -0,0 +1,28 @@
1
+name: Build and valiate SDK package
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [ main ]
7
+ pull_request:
8
+ branches: [ main, dev ]
9
10
+permissions:
11
+ contents: read
12
13
+jobs:
14
+ validate:
15
+ name: Validate code accuracy
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Set up Python
20
+ uses: actions/setup-python@v5
21
+ with:
22
+ python-version: '3.8'
23
+ - name: Install dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ pip install -r requirements-dev.txt
27
+ - name: Lint with Pylint
28
+ run: pylint msgraph_beta --disable=W --rcfile=.pylintrc
.github/workflows/build_publish.yml
0 commit comments