Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
evanlin96069 committed Jan 12, 2024
1 parent 3bb6cda commit d509260
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build

on:
push:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- 'README.md'

jobs:
build:
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up clang
uses: egor-tensin/setup-clang@v1

- name: Build project
run: |
./compile.bat
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: sar-dll
path: bin/sar.dll

0 comments on commit d509260

Please sign in to comment.