Skip to content

Commit c15ba25

Browse files
authored
[ci] Add ci.yml for continuous integration (#1)
Add ci.yml for continuous integration
1 parent 12db07c commit c15ba25

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.github/workflows/ci.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
BUILD_TYPE: Release
11+
12+
jobs:
13+
build:
14+
runs-on: windows-latest
15+
16+
steps:
17+
- uses: actions/checkout@v4
18+
19+
- name: Setup MSVC toolchain
20+
uses: ilammy/msvc-dev-cmd@v1
21+
22+
- name: Install CMake
23+
uses: lukka/get-cmake@latest
24+
25+
- name: Build project
26+
run: |
27+
cmake -B build
28+
cd build
29+
cmake --build . --config Release
30+
31+
- name: Upload build artifacts
32+
uses: actions/[email protected]
33+
with:
34+
name: ci-build
35+
path: build/Release
36+
retention-days: 14
37+

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# DarkMode Mod for UnityEditor on Windows
2+
<a style="text-decoration:none" href="https://github.com/0x7c13/UnityEditor-DarkMode/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/0x7c13/UnityEditor-DarkMode/actions/workflows/ci.yml" alt="Size" /></a>
3+
24
A fully working dark mode mod for Unity Editor on Windows with:
35
- Dark title bar
46
- Dark menu bar

0 commit comments

Comments
 (0)