Skip to content

[add] Added gitaction #4

[add] Added gitaction

[add] Added gitaction #4

Workflow file for this run

name: app_test
on: push
jobs:
app_test:
runs_on: ubuntu-latest

Check failure on line 7 in .github/workflows/app_test.yml

View workflow run for this annotation

GitHub Actions / app_test

Invalid workflow file

The workflow is not valid. .github/workflows/app_test.yml (Line: 7, Col: 5): Unexpected value 'runs_on' .github/workflows/app_test.yml (Line: 7, Col: 5): Required property is missing: runs-on
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
architecture: 'x64'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Start unittest
run: |
python -m unittest test.test_app -v