Skip to content

ci: bump semantic-release from 24.0.0 to 24.1.0 #191

ci: bump semantic-release from 24.0.0 to 24.1.0

ci: bump semantic-release from 24.0.0 to 24.1.0 #191

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: Build-Test
on:
# push:
pull_request_target:
branches: [ "master" ]
jobs:
build-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Integration Tests
run: docker-compose -f DetectiCam/docker-compose.test.yml run sut