You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,13 +16,13 @@ To understand GitHub actions you need to look for the github workflow folder whe
16
16
**What does main.yml do?**
17
17
Here is an explanation of each section of the .yml file. Pictures of the sections are added and an explanation is given beneath the picture.
18
18
19
-
'''
19
+
```
20
20
on:
21
21
push:
22
22
branches: [ master ]
23
23
paths:
24
24
- '**.mlx'
25
-
'''
25
+
```
26
26
27
27
28
28
This section of code basically means it will only run when a push is made to the master branch and one of the file types is a .mlx file. If not .mlx files are pushed, we don’t continue.
0 commit comments