Update README.md #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Cache MinGW | |
uses: actions/cache@v3 | |
with: | |
path: C:\tools\mingw64 | |
key: mingw-${{ runner.os }}-${{ hashFiles('**/SnapKey.cpp', '**/resources.rc') }} | |
restore-keys: | | |
mingw-${{ runner.os }}- | |
- name: Install MinGW | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: choco install mingw | |
- name: Add MinGW to Path | |
run: echo "C:\tools\mingw64\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding ascii -Append | |
- name: Compile resource file | |
run: windres resources.rc -o resources.o | |
- name: Compile the executable | |
run: g++ -o SnapKey SnapKey.cpp resources.o -mwindows -std=c++11 -static | |
- name: Upload executable | |
uses: actions/upload-artifact@v4 | |
with: | |
name: SnapKey-executable | |
path: SnapKey.exe | |
- name: Run executable | |
run: .\SnapKey.exe | |
if: always() |