-
-
Notifications
You must be signed in to change notification settings - Fork 6
35 lines (35 loc) · 823 Bytes
/
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
name: "Run locally"
on:
push:
paths:
- ".github/workflows/test.yml"
- "dist/index.js"
jobs:
run:
runs-on: ${{ matrix.os }}
if: ${{ always() }}
strategy:
max-parallel: 3
matrix:
os:
- ubuntu-20.04
- ubuntu-22.04
- macos-11
- macos-12
- windows-2019
- windows-2022
version:
- 1.23.14
- 1.24.8
- 1.25.4
steps:
- uses: actions/checkout@v1
if: github.repository == 'matootie/dokube'
- uses: ./
with:
personalAccessToken: ${{ secrets.DIGITALOCEAN_TOKEN }}
clusterName: ${{ secrets.CLUSTER_NAME }}
expirationTime: 90
namespace: default
version: ${{ matrix.version }}
- run: kubectl get nodes