Skip to content

Mockaway resources in test #54

Mockaway resources in test

Mockaway resources in test #54

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
# Controls when the action will run.
on:
push:
branches:
- "master"
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:

Check failure on line 17 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Tests

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 17, Col: 3): The workflow must contain at least one job with no dependencies.
needs: ubuntu
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install nox
- name: Test
run: nox -s tests -- -m "not slow"