We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 267f45f + 05b7402 commit 6c87b89Copy full SHA for 6c87b89
.github/workflows/single-client.yaml
@@ -1,4 +1,4 @@
1
-name: Continuous Integration
+name: Continuous Integration (Single Client)
2
on:
3
push:
4
branches:
.github/workflows/subsplit-client.yaml
@@ -0,0 +1,21 @@
+name: Continuous Integration (SubSplit Client)
+on:
+ push:
+ branches:
5
+ - 'main'
6
+ - 'master'
7
+ - 'refs/heads/v[0-9]+.[0-9]+.[0-9]+'
8
+ pull_request:
9
+jobs:
10
+ generate-and-test-client:
11
+ runs-on: ubuntu-latest
12
+ name: Generate and test client
13
+ container:
14
+ image: ghcr.io/wyrihaximusnet/php:8.2-nts-alpine-dev-root
15
+ steps:
16
+ - uses: actions/checkout@v3
17
+ with:
18
+ fetch-depth: '0'
19
+ persist-credentials: 'false'
20
+ - uses: "ramsey/composer-install@v2"
21
+ - run: make generate-example-client-subsplit
0 commit comments