sbansla page 2 #35
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: page-2 | |
run-name: ${{ github.actor }} page 2 | |
on: | |
workflow_dispatch | |
jobs: | |
# job1: | |
# name: Running job1 | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: run child process | |
# run: | | |
# node .github/scripts/test_child_process.js | |
job2: | |
name: Running job2 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup .NET Core SDK | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: '3.1.x' | |
# - name: Display | |
# run: ls /usr/share/dotnet/sdk/ | |
# - name: Remove faulty SDK version | |
# run: sudo rm -rf /usr/share/dotnet/sdk/7* | |
- name: Get installed dotnet version | |
run: dotnet --version |