Skip to content

Commit

Permalink
IFF: Build using GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pixeldesu committed Oct 12, 2023
1 parent 7397c1c commit bdf8bd0
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 23 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/iff-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PangLib.IFF (Build)

on:
push:
branches: [ master ]
paths:
- 'PangLib.IFF/**.*'
pull_request:
branches: [ master ]
paths:
- 'PangLib.IFF/**.*'

jobs:
build:
name: Build
runs-on: windows-latest
steps:
- uses: actions/[email protected]
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '5.x'
- name: Install dependencies
working-directory: PangLib.IFF
run: dotnet restore
- name: Build project
working-directory: PangLib.IFF
run: dotnet build
22 changes: 0 additions & 22 deletions PangLib.IFF/appveyor.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ dotnet add package [package-name]

| Library | Version | Build Status | Description |
|-----------------------------------------------|-----------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------|
| [**PangLib.IFF**](PangLib.IFF/) | [![Nuget](https://img.shields.io/nuget/v/PangLib.IFF.svg)](https://www.nuget.org/packages/PangLib.IFF/) | [![Build status](https://ci.appveyor.com/api/projects/status/sdpkqdag4hrstuk7/branch/master?svg=true)](https://ci.appveyor.com/project/pixeldesu/panglib-nrfc5/branch/master) | Library to handle and parse data from `.iff` files |
| [**PangLib.IFF**](PangLib.IFF/) | [![Nuget](https://img.shields.io/nuget/v/PangLib.IFF.svg)](https://www.nuget.org/packages/PangLib.IFF/) | [![Build status](https://github.com/retreev/panglib/actions/workflows/iff-build.yaml/badge.svg)](https://github.com/retreev/PangLib/actions/workflows/iff-build.yaml) | Library to handle and parse data from `.iff` files |
| [**PangLib.DAT**](PangLib.DAT/) | [![Nuget](https://img.shields.io/nuget/v/PangLib.DAT.svg)](https://www.nuget.org/packages/PangLib.DAT/) | [![Build status](https://github.com/retreev/panglib/actions/workflows/dat-build.yaml/badge.svg)](https://github.com/retreev/PangLib/actions/workflows/dat-build.yaml) | Library to handle and parse data from `.dat` files |
| [**PangLib.PAK**](PangLib.PAK/) | [![Nuget](https://img.shields.io/nuget/v/PangLib.PAK.svg)](https://www.nuget.org/packages/PangLib.PAK/) | [![Build status](https://ci.appveyor.com/api/projects/status/cd5qsu61grfsjd7q/branch/master?svg=true)](https://ci.appveyor.com/project/pixeldesu/panglib-6qiyf/branch/master) | Library to handle and parse data from `.pak` files |
| [**PangLib.PET**](PangLib.PET/) | [![Nuget](https://img.shields.io/nuget/v/PangLib.PET.svg)](https://www.nuget.org/packages/PangLib.PET/) | [![Build status](https://ci.appveyor.com/api/projects/status/7gjip9py34vnmtv1/branch/master?svg=true)](https://ci.appveyor.com/project/pixeldesu/panglib/branch/master) | Library to handle and parse data from `.*pet` files |
Expand Down

0 comments on commit bdf8bd0

Please sign in to comment.