Skip to content

Commit eaef473

Browse files
Github Actions
1 parent 9fc86f0 commit eaef473

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
job:
5+
name: CI
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-dotnet@v4
10+
with:
11+
dotnet-version: '8.0.x'
12+
- name: Build
13+
run: dotnet build

.github/workflows/installer_ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Installer CI
2+
on:
3+
push:
4+
paths:
5+
- 'installer/**'
6+
pull_request:
7+
paths:
8+
- 'installer/**'
9+
jobs:
10+
job:
11+
defaults:
12+
run:
13+
working-directory: ./installer
14+
strategy:
15+
fail-fast: false
16+
matrix:
17+
os: [windows-latest, ubuntu-latest]
18+
name: Installer CI on ${{ matrix.os }}
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v4
22+
- uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.11'
25+
- name: Install requirements
26+
run: pip install -r requirements.txt
27+
- name: Build
28+
run: python build.py
29+

0 commit comments

Comments
 (0)