Merge pull request #1 from yurvon-screamo/feature/test_log #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup dotnet | |
uses: ./.github/dotnet | |
- name: Run dotnet build | |
run: dotnet build --configuration Debug | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup dotnet | |
uses: ./.github/dotnet | |
- name: dotnet format check | |
run: dotnet format --verify-no-changes *.sln | |
env: | |
PATH: ${{ github.env.PATH }}:/home/runner/.dotnet/tools | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup dotnet | |
uses: ./.github/dotnet | |
- name: unit test | |
run: dotnet test *sln | |
image-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile --tag yurvon-screamo/redfish.mockup.server:$(date +%s) |