Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing system, no spaces, blue draft #21

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 15 additions & 5 deletions .github/workflows/ubuntodotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,17 @@

name: .NET

on: pull_request_target
#on: pull_request_target

on:
push:
branches:
- main
pull_request_target:
branches:
- main



jobs:
build:
Expand Down Expand Up @@ -58,10 +68,7 @@ jobs:

- name: Build
run: dotnet build --no-restore

- name: ls
run: ls -a


- name: run
run: dotnet run --project ConsoleAppSVS-test/ConsoleAppSVS-test.csproj

Expand Down Expand Up @@ -93,3 +100,6 @@ jobs:
- name: Override page_url
id: change-page-url
run: echo "new_page_url=${{ steps.deployment.outputs.page_url }}index.html" >> $GITHUB_OUTPUT

- name: ls
run: ls -a
2 changes: 1 addition & 1 deletion modelCsharp/TestModel/testGraph/testGraph/testGraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def make_observed(observed):
makeplot(Data,color)
make_observed(observed_data[datefilter])
Graph.tight_layout(pad=1.5)
Graph.suptitle('DRAFT VERSION',fontsize = 32, color = "r")
Graph.suptitle('DRAFT VERSION',fontsize = 32, color = "b")

pos+=1

Expand Down
Loading