Skip to content
Discussion options

You must be logged in to vote

Hey! The issue is a simple typo in your second job. You wrote runs-on: ubunto-latest instead of ubuntu-latest (with a 'u' at the end).

GitHub is stuck in a loop looking for a runner named 'ubunto' that doesn't exist. Fix that 'o' and it will start instantly! Also, make sure your indentation is correct (YAML is very picky about spaces).

Here is the fixed workflow:

on:
  push:
  pull_request:

jobs:
  backend-tests:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v4 

      - name: Set up Python
        uses: actions/setup-python@v5
        with:
          python-version: '3.12'
 
      - name: Install backend dependencies
        run: python…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@Dankh917
Comment options

Answer selected by Dankh917
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Actions Build, test, and automate your deployment pipeline with world-class CI/CD General General topics and discussions that don't fit into other categories, but are related to GitHub Question Ask and answer questions about GitHub features and usage Welcome 🎉 Used to greet and highlight first-time discussion participants. Welcome to the community!
2 participants