Skip to content

ci(project structure): Dockerize application #20

ci(project structure): Dockerize application

ci(project structure): Dockerize application #20

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: Tests
on:
push:
workflow_call:
workflow_dispatch:
pull_request:
branches: [ "main" ]
jobs:
build:
uses: osscameroon/place-api/.github/workflows/build.yml@main
tests:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet test --no-build