-
Notifications
You must be signed in to change notification settings - Fork 60
54 lines (48 loc) · 1.23 KB
/
lint-test-build.yaml
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: Lint, test, and build
on:
workflow_dispatch:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
lint-test-build:
strategy:
matrix:
vars: [
{ os: ubuntu-24.04, platform: linux/amd64 },
{ os: ubuntu-24.04-arm, platform: linux/arm64 },
]
name: Lint, test, and build the code
runs-on: ${{ matrix.vars.os }}
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Docker buildx for multi-architecture builds
uses: docker/setup-buildx-action@v3
with:
use: true
- name: Build the Docker image
run: >
docker buildx build
--load
--platform ${{ matrix.vars.platform }}
--tag pgbackweb:latest
--file docker/Dockerfile.dev .
- name: Run lint, test, and build
run: >
docker run --rm -v $PWD:/app pgbackweb:latest /bin/bash -c "
cd /app &&
deno install &&
go mod download &&
task fixperms &&
task check-deps &&
task lint-only &&
task test-only &&
task build
"