diff --git a/.github/workflows/imnasnainaec.yml b/.github/workflows/imnasnainaec.yml new file mode 100644 index 0000000..395e223 --- /dev/null +++ b/.github/workflows/imnasnainaec.yml @@ -0,0 +1,35 @@ +# This is your hello Github Actions file + +name: Hello imnasnainaec + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the main branch + pull_request: + branches: [main] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Run a single command using the runners shell + #- name: Github json + # run: echo '${{ toJSON(github) }}' + + # Build the TestReactProject + - name: TestReactProject + working-directory: TestReactProject + run: dotnet build +# Below you can see how a second job named test could be added that runs on windows and has its own steps +# test: +# runs-on: windows-latest +# +# steps: