ci: Fix job reference

This commit is contained in:
Iván Ovejero 2023-08-01 13:12:01 +02:00
parent 5b28c0ffe7
commit 13c32ba7b5

View file

@ -7,7 +7,7 @@ on:
- parallelize-ci-master
jobs:
build:
install-and-build:
runs-on: ubuntu-latest
timeout-minutes: 30
@ -46,7 +46,7 @@ jobs:
unit-test:
name: Unit tests
runs-on: ubuntu-latest
needs: install
needs: install-and-build
steps:
- uses: actions/checkout@v3
with:
@ -82,7 +82,7 @@ jobs:
lint:
name: Lint changes
runs-on: ubuntu-latest
needs: install
needs: install-and-build
env:
CI_LINT_MASTER: true
steps: