-
-
Notifications
You must be signed in to change notification settings - Fork 48
35 lines (26 loc) · 888 Bytes
/
pr.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
on:
pull_request:
branches:
- "*"
workflow_dispatch: {}
name: "Pull Request"
jobs:
detectToolVersions:
name: "Detect Tool Versions"
uses: ./.github/workflows/part_tool_versioning.yml
test:
name: "Test"
needs: ["detectToolVersions"]
uses: ./.github/workflows/part_test.yml
with:
otpVersion: "${{ needs.detectToolVersions.outputs.otpVersion }}"
rebarVersion: "${{ needs.detectToolVersions.outputs.rebarVersion }}"
elixirVersion: "${{ needs.detectToolVersions.outputs.elixirVersion }}"
docs:
name: "Docs"
needs: ["detectToolVersions"]
uses: ./.github/workflows/part_docs.yml
with:
otpVersion: "${{ needs.detectToolVersions.outputs.otpVersion }}"
rebarVersion: "${{ needs.detectToolVersions.outputs.rebarVersion }}"
elixirVersion: "${{ needs.detectToolVersions.outputs.elixirVersion }}"