-
Notifications
You must be signed in to change notification settings - Fork 4
80 lines (56 loc) · 1.94 KB
/
ubuntodotnet.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# 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: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./modelCsharp
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Install Python 3
uses: actions/setup-python@v1
with:
python-version: 3.11.5
- name: Install Python pandas
run: python -m pip install --upgrade pip pandas
- name: Install Python matplotlib
run: python -m pip install --upgrade pip matplotlib
- name: Install email
run: sudo apt-get install mailutils
- name: Install Python pyinstaller
run: python -m pip install --upgrade pip datetime
- name: Install Python datetime
run: pip install pyinstaller
- name: Create a temporary artifact downloads folder for graphs
run: mkdir graphs
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: run
run: dotnet run --project ConsoleAppSVS-test/ConsoleAppSVS-test.csproj
- name: run python
run: python TestModel/testGraph/testGraph/testGraph.py
- name: send a graph
run: mail -s "Graph" -A testplot.png [email protected]
- name: moving artfact to temp folder
run: |
mv testplot.png graphs
- name: list a folder
run: ls
- name: Step 3 - Use the Upload Artifact GitHub Action
uses: actions/upload-artifact@v2
with:
name: folder for graphs
path: graphs