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.
1 parent 5060f03 commit f874eecCopy full SHA for f874eec
.github/workflows/testing.yml
@@ -0,0 +1,25 @@
1
+name: Testing Proxy Automation
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ pull_request:
7
8
9
+ workflow_dispatch:
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v3
17
18
+ - name: Testing if has docker
19
+ run: echo Hello, world! && docker ps -q -a
20
21
+ # Runs a set of commands using the runners shell
22
+ - name: Run a multi-line script
23
+ run: |
24
+ echo Add other actions to build,
25
+ echo test, and deploy your project.
0 commit comments