Skip to content

Commit

Permalink
feat: add Github Actions build workflow and empty solution file (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahanoff authored Sep 13, 2024
1 parent 62399eb commit 810daaa
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build

on:
pull_request:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet: [ '8.x' ]

steps:
- uses: actions/checkout@v4

- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
dotnet-quality: 'ga'

- name: Build solution
working-directory: src
run: dotnet build

- name: Run unit-tests
working-directory: src
run: dotnet test
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# AEMO.MDFF

[![Build](https://github.com/ahanoff/aemo-mdff-net/actions/workflows/build.yaml/badge.svg)](https://github.com/ahanoff/aemo-mdff-net/actions/workflows/build.yaml)

Parser for Australian Energy Market Operator (AEMO) Meter Data File Format (MDFF) specification


## References

- https://www.aemo.com.au/
Expand Down
10 changes: 10 additions & 0 deletions src/AEMO.MDFF.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

Microsoft Visual Studio Solution File, Format Version 12.00
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
EndGlobalSection
EndGlobal

0 comments on commit 810daaa

Please sign in to comment.