Tests for the specific network formatters #13
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
# 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: CLI - build, test, release | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 6 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.x | |
- name: Show path | |
run: pwd | |
- name: Build | |
run: cd open-social-distributor-app && ./build-all.sh | |
test: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET 6 | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 6.x | |
- name: Show path | |
run: pwd | |
- name: Test | |
run: cd open-social-distributor-app && ./run-unit-tests.sh | |
# release-cli: | |
# needs: test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Setup .NET 6 | |
# uses: actions/setup-dotnet@v3 | |
# with: | |
# dotnet-version: 6.x | |
# - name: Show path | |
# run: pwd | |
# - name: Build CLI | |
# run: cd open-social-distributor-app && ./release-cli.sh | |
# - name: Create release | |
# if: startsWith(github.ref, 'refs/tags/') | |
# uses: softprops/action-gh-release@v1 | |
# with: | |
# draft: true | |
# fail_on_unmatched_files: true | |
# body: | | |
# This is a release of the Open Social Distributor CLI. | |
# files: | | |
# open-social-distributor-app/release/linux-x64/DistributionCLI-linux | |
# open-social-distributor-app/release/osx-x64/DistributionCLI-osx | |
# open-social-distributor-app/release/win-x64/DistributionCLI.exe | |
# LICENSE | |
# README.md |