Skip to content

Commit

Permalink
mINI wrapper update
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirteenAG committed Jan 23, 2024
1 parent e917a99 commit e0028a9
Show file tree
Hide file tree
Showing 37 changed files with 5,737 additions and 804 deletions.
15 changes: 0 additions & 15 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,17 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
39 changes: 39 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: MSBuild

on:
push:
pull_request:
workflow_dispatch:

env:
SOLUTION_FILE_PATH: build/IniReader.sln
BUILD_CONFIGURATION: Release

permissions:
contents: read

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1

- name: Configure build
shell: cmd
run: ./premake5.bat

- name: Build
shell: cmd
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

- name: Test
shell: cmd
run: |
cd tests
test.bat
Loading

0 comments on commit e0028a9

Please sign in to comment.