-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
31 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,42 @@ | ||
name: Example | ||
|
||
on: push | ||
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 Python | ||
uses: actions/setup-python@v5.1.0 | ||
- name: Setup Go | ||
uses: actions/setup-go@v5.0.1 | ||
with: | ||
python-version: 3.8 | ||
go-version: 1.22.3 | ||
|
||
- name: Show Python Version | ||
- 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 | ||
python --version | ||
ls | ||
pip3 install pandas | ||
#- name: Setup Python | ||
#uses: actions/[email protected] | ||
#with: | ||
#python-version: 3.8 | ||
|
||
#- name: Show Python Version | ||
#run: | | ||
#ls | ||
#python --version | ||
#ls | ||
#pip3 install pandas | ||
|