-
Notifications
You must be signed in to change notification settings - Fork 237
134 lines (110 loc) · 3.37 KB
/
Copy pathmaster.yml
File metadata and controls
134 lines (110 loc) · 3.37 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: Build master
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
if: github.repository == 'hexlet-codebattle/codebattle'
runs-on: ubuntu-latest
timeout-minutes: 30
env:
MIX_ENV: test
services:
db:
image: postgres:16-alpine
ports: ["5432:5432"]
env:
POSTGRES_PASSWORD: postgres
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
--name=pg_ci
--mount type=tmpfs,destination=/var/lib/postgresql/data
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Elixir
uses: erlef/setup-beam@v1
with:
otp-version: "27.3"
elixir-version: "1.18.4"
- name: Cache Dependencies
uses: actions/cache@v4
id: deps-cache
with:
path: |
./services/app/deps
./services/app/_build
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-mix-
- name: Get deps
run: |
mix local.hex --force
mix local.rebar --force
mix deps.get
working-directory: ./services/app
- name: Mix deps.compile
run: mix compile --warnings-as-errors
working-directory: ./services/app
- name: Mix format
run: mix format --check-formatted
working-directory: ./services/app
- name: Mix credo
run: mix credo
working-directory: ./services/app
# --- pnpm setup & caching ---
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "pnpm"
cache-dependency-path: ./services/app/apps/codebattle/pnpm-lock.yaml
- name: Install pnpm dependencies
run: pnpm install --frozen-lockfile
working-directory: ./services/app/apps/codebattle
- name: Eslint
run: pnpm run lint
working-directory: ./services/app/apps/codebattle
- name: Run jest
run: pnpm run test
working-directory: ./services/app/apps/codebattle
- name: Mix audit
run: mix hex.audit
working-directory: ./services/app
- name: Setup db
run: mix ecto.create && mix ecto.migrate
working-directory: ./services/app
- name: Mix tests
run: make test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./services/app/assp/codebattle/cover/excoveralls.json
fail_ci_if_error: false
- name: Install Podman
run: |
sudo apt-get update
sudo apt-get -y install podman
- name: Login to Github Container Registry
run: podman login ghcr.io -u vtm9 -p ${{ secrets.GH_REGISTRY_TOKEN }}
- name: Build and push codebattle image
run: |
make GIT_HASH=${{ github.sha }} podman-build-codebattle
make podman-push-codebattle
- name: Build and push runner image
run: |
make podman-build-runner
make podman-push-runner