-
-
Notifications
You must be signed in to change notification settings - Fork 373
34 lines (33 loc) · 845 Bytes
/
ci.yml
File metadata and controls
34 lines (33 loc) · 845 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
# SPDX-FileCopyrightText: 2019 ash contributors <https://github.com/ash-project/ash/graphs/contributors>
#
# SPDX-License-Identifier: MIT
name: Ash CI
on:
push:
tags:
- "v*"
branches: [main, "3.0"]
pull_request:
branches: [main, "3.0"]
workflow_dispatch:
permissions:
contents: read
jobs:
ash-ci:
strategy:
matrix:
sat_solver: ["SimpleSat", "Picosat"]
uses: ./.github/workflows/ash-ci.yml
secrets:
HEX_API_KEY: ${{ secrets.HEX_API_KEY }}
permissions:
contents: write
pages: write
id-token: write
security-events: write
with:
sat-solver: ${{ matrix.sat_solver }}
igniter-upgrade: ${{matrix.sat_solver == 'Picosat'}}
publish-docs: ${{matrix.sat_solver == 'Picosat'}}
release: ${{matrix.sat_solver == 'Picosat'}}
reuse: true