diff --git a/.github/workflows/hellow.yaml b/.github/workflows/hellow.yaml index 430c743..85c1b12 100644 --- a/.github/workflows/hellow.yaml +++ b/.github/workflows/hellow.yaml @@ -5,13 +5,13 @@ on: jobs: run-script: + runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: '3.10' - cache: 'pip' # caching pip dependencies - - name: Install Dependecies - run: pip install -r requirements.txt - - name: Run Script - run: python script.py + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.10" + cache: "pip" + + - run: pip install -r requirements.txt + - run: python script.py