Skip to content

Commit

Permalink
Switch to GH Actions (#13)
Browse files Browse the repository at this point in the history
Remove appveyor.yml and add GitHub Action yml.
  • Loading branch information
ritasker authored Aug 7, 2024
1 parent 60518bc commit 47ed331
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 37 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: .Net Build

on:
pull_request:

push:
branches:
- master
tags:
- '*'

env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1

jobs:
build:
name: Github Actions Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.*
- name: Build Reason
run: echo ${{github.ref}} and ${{github.event_name}}
- name: Build
run: dotnet build --configuration Release --nologo
37 changes: 0 additions & 37 deletions appveyor.yml

This file was deleted.

0 comments on commit 47ed331

Please sign in to comment.