Skip to content

Commit d528934

Browse files
committed
Added Actions Workflow
1 parent 7bd7e53 commit d528934

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/Test-Python.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: PythonTest
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2.3.2
11+
- uses: actions/setup-python@v2
12+
with:
13+
python-version: '3.8.5'
14+
architecture: 'x64'
15+
- name: build
16+
run: |
17+
python3 --version
18+
python Filename_class.py
19+
python Filename_java.py

0 commit comments

Comments
 (0)