Skip to content

Commit f874eec

Browse files
authored
Create testing.yml
Init testing
1 parent 5060f03 commit f874eec

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/testing.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Testing Proxy Automation
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
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

Comments
 (0)