-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (36 loc) · 1013 Bytes
/
example.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
name: Example
on:
push:
branches: [main] # add with comma for more branches to monitor
pull_request:
branches: [main]
jobs:
example:
name: Create Ubuntu OS
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/[email protected]
with:
go-version: 1.22.3
- name: Check Go Version
run: go version
- name: Checkout Repo # to pull out current repo code
uses: actions/[email protected]
- name: Install dependencies
run: |
#go mod init calc # for go mod. If we use go build, it will do the same for the 3 lines.
go mod tidy
go get github.com/franela/goblin
ls
go test
#- name: Setup Python
#uses: actions/[email protected]
#with:
#python-version: 3.8
#- name: Show Python Version
#run: |
#ls
#python --version
#ls
#pip3 install pandas