Skip to content

Commit 276b43a

Browse files
authored
Merge pull request #1 from githubnext/copilot/add-ci-yml-workflow
2 parents c650d68 + 0aa90d8 commit 276b43a

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
compile:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
12+
13+
- name: Set up gh-aw CLI
14+
uses: github/gh-aw-actions/setup-cli@f8495a686e66770ae977f82732f34d7340ee42a4 # v0.71.4
15+
with:
16+
gh_token: ${{ secrets.GITHUB_TOKEN }}
17+
18+
- name: Compile workflows
19+
run: gh aw compile workflows/
20+
env:
21+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)