-
Notifications
You must be signed in to change notification settings - Fork 47
54 lines (46 loc) · 1.34 KB
/
pull-request.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
48
49
50
51
52
53
54
name: Dagger Pull Request Pipeline
on:
push:
branches: [main]
pull_request:
paths-ignore:
- '*.md'
- 'assets/**'
permissions:
contents: write # This is required for actions/checkout
packages: write # This is required for publishing the package
jobs:
test-code:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22.5"
cache: true
- name: Install dependencies
run: go mod download
- name: Test with the Go CLI
run: go test -v ./...
- name: Call Linting Function
uses: dagger/[email protected]
with:
version: "latest"
verb: call
module: github.com/bishal7679/[email protected]
args: lint-code --directory-arg=.
- name: Call Pull-Request Function
uses: dagger/[email protected]
if: always()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: "latest"
verb: call
module: github.com/bishal7679/[email protected]
args: pull-request --directory-arg=. --github-token=${{ env.GITHUB_TOKEN }}