generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 297
43 lines (42 loc) · 997 Bytes
/
manual-test.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
name: Manual test matrix
on: workflow_dispatch
jobs:
test:
strategy:
fail-fast: false
matrix:
runs-on:
- ubuntu-20.04
- ubuntu-22.04
- macos-11.0
- macos-12.0
- windows-2019
- windows-2022
limit-access-to-actor:
- true
- false
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v4
- uses: ./
with:
limit-access-to-actor: ${{ matrix.limit-access-to-actor }}
test-container:
strategy:
fail-fast: false
matrix:
container-runs-on:
- fedora:latest
- archlinux:latest
- ubuntu:latest
limit-access-to-actor:
- true
- false
runs-on: ubuntu-latest
container:
image: ${{ matrix.container-runs-on }}
steps:
- uses: actions/checkout@v4
- uses: ./
with:
limit-access-to-actor: ${{ matrix.limit-access-to-actor }}