Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
corne-ac committed Apr 22, 2024
2 parents 558dc23 + 0b0275c commit 7921e78
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/basic-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This GitHub Action builds a .NET MAUI project for all targeted platforms
# The workflow can be triggered manually, is triggered on a git push or
# when a PR is opened that targets the main branch.
# This just verifies the project builds, no artifacts are being uploaded or can be retrieved.

name: Build .NET MAUI Project

on:
workflow_dispatch:
push:
branches: [ "main" ]
paths-ignore:
- "**.md"
pull_request:
branches: [ "main" ]

# Customize with your own values here
env:
BUILD_CONFIGURATION: Release
DOTNET_VERSION: 8.0.x
CSPROJ_TO_BUILD: EkseemMaarNet.csproj

jobs:
build-ci:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v2
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install .NET MAUI Workload
run: dotnet workload install maui
- name: Restore dependencies
run: dotnet restore ${{ env.CSPROJ_TO_BUILD }}
- name: Build ${{ env.CSPROJ_TO_BUILD }}
run: dotnet build ${{ env.CSPROJ_TO_BUILD }} -c ${{ env.BUILD_CONFIGURATION }}
3 changes: 2 additions & 1 deletion Notes.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Dink nie enige iets is scrollable, moet dalk fix
- Dink nie enige iets is scrollable, moet dalk fix
- Test from codespace
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ekseem Maar Net
This is a mobile app for people that suffer from a skin condition called "ekseem" in afrikaans, also known as "eczema".
The purpose of teh app is to have an easy way to quickly check information about different foods that can benefit the reduction of the eczema, and other foods to avoid.

0 comments on commit 7921e78

Please sign in to comment.