-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.05 KB
/
ci.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
name: Go build test
on:
pull_request:
branches:
- master
schedule:
- cron: '0 20 * * Sat'
push:
env:
GLOBAL_ENV: global_env_value
DAY_OF_WEEK: ThursDay
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4 # caching is enabled by default
with:
go-version-file: 'go.mod'
cache-dependency-path: go.sum
# go-version: '1.19.x'
# go-version: 'stable'
- name: Build ${{ github.ref_name }}
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Use variables
if: ${{ env.DAY_OF_WEEK == 'ThursDay' }}
# if [[ env.DAY_OF_WEEK == 'ThursDay' ]]; then
# fi
run: |
echo "repository variable : $REPOSITORY_VAR"
echo "secret var : $REPOSITORY_SECRET"
echo "global env : $GLOBAL_ENV"
env:
REPOSITORY_VAR: ${{ vars.REPOSITORY_VAR }}
REPOSITORY_SECRET: ${{ secrets.SECRET_TEST_NAME }}