Skip to content

feat: add shipment information and water volumes #103

feat: add shipment information and water volumes

feat: add shipment information and water volumes #103

Workflow file for this run

name: API
on:
repository_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore
run: dotnet restore ./src/Chemcom.sln
- name: Build
run: dotnet build ./src/Chemcom.sln --configuration Release --no-restore
test:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
- name: Restore
run: dotnet restore ./src/Chemcom.sln
- name: Test
run: dotnet test ./src/IntegrationTests