-
Notifications
You must be signed in to change notification settings - Fork 8
44 lines (36 loc) · 862 Bytes
/
ci.yaml
File metadata and controls
44 lines (36 loc) · 862 Bytes
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
name: CI
on:
pull_request:
push:
branches:
- master
permissions:
id-token: write
contents: write
pull-requests: write
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
TF_ACC: 1
COMMIT_MESSAGE_PREFIX: "[skip ci]"
GITHUB_TOKEN: ${{ github.token }}
GITHUB_USERNAME: "github-actions[bot]"
GITHUB_EMAIL: "41898282+github-actions[bot]@users.noreply.github.com"
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version-file: 'go.mod'
cache: true
- name: Tests
run: |
make test