Skip to content

fix(ci): pwd for quetzalcoatl in pipeline #4

fix(ci): pwd for quetzalcoatl in pipeline

fix(ci): pwd for quetzalcoatl in pipeline #4

name: Quetzalcoatl - Build and Test Auth Service
on:
push:
paths:
- "quetzalcoatl-auth/**"
- ".github/workflows/quetzalcoatl-auth-ci.yaml"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Cd into the project directory
run: cd quetzalcoatl-auth
- name: Pwd
run: pwd
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build
- name: Test with the dotnet CLI
run: dotnet test