Skip to content

Commit

Permalink
chore: replace AppVeyor build with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeLankamp committed Nov 5, 2024
1 parent 83eb5f0 commit 15003a9
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 12 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: build

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

workflow_dispatch:

env:
SOLUTION_FILE_PATH: .

permissions:
contents: read

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
build_config: ['Debug','Release']

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

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

- name: Restore NuGet packages
working-directory: ${{env.GITHUB_WORKSPACE}}
run: nuget restore ${{env.SOLUTION_FILE_PATH}}

- name: Build ${{matrix.build_config}}|x86
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{matrix.build_config}} /p:Platform=x86 ${{env.SOLUTION_FILE_PATH}}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# lua-converter
[![Build status](https://ci.appveyor.com/api/projects/status/aqk025i6ppq415ph/branch/master?svg=true)](https://ci.appveyor.com/project/MikeLankamp/lua-converter/branch/master)
[![build](https://github.com/GlyphXTools/lua-converter/actions/workflows/build.yml/badge.svg)](https://github.com/GlyphXTools/lua-converter/actions/workflows/build.yml?query=branch%3Amaster)

Converter between Lua and Petroglyph-Lua file formats
11 changes: 0 additions & 11 deletions appveyor.yml

This file was deleted.

0 comments on commit 15003a9

Please sign in to comment.