Skip to content

[add] Added gitaction #2

[add] Added gitaction

[add] Added gitaction #2

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: 11, Col: 9): Unexpected value 'names'
steps:
- uses: actions/checkout@v3
- names: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: '3.8'
architecture: 'x64'
- names: 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