diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..17a6d4a --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: fitness-api + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4.2.0 + - name: Setup .NET Core SDK + uses: actions/setup-dotnet@v4.0.1 + with: + dotnet-version: 8.0.x