Skip to content

feat(api): initial version of sendora city API #1

feat(api): initial version of sendora city API

feat(api): initial version of sendora city API #1

Workflow file for this run

---
name: CI ⚙️
on:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: lint
uses: super-linter/super-linter@v5
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v4
- name: test
run: |
cd api
dotnet test
build:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: build
run: |
cd api
docker build .