Skip to content

1.2.0

1.2.0 #41

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Code Quality
run: |
poetry install black
poetry run black . --check
unit-tests:
name: "Unit tests (Python ${{ matrix.python-version }}, Poetry ${{ matrix.poetry-version }}, Platform ${{ matrix.os.name }})"
uses: ./.github/workflows/_tests-matrix.yml

Check failure on line 29 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. In .github/workflows/ci.yml (Line: 29, Col: 11): Error from called workflow b4ird/spotify_sync/.github/workflows/_tests-matrix.yml@c9c52689ff004c66db8e178b98f589483d8ccdb8 (Line: 39, Col: 19): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
needs: lint
strategy:
matrix:
os:
- name: Ubuntu
image: ubuntu-22.04
- name: macOS x86_64
image: macos-13
- name: Windows
image: windows-2022
- name: macOS aarch64
image: macos-14
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.11'
- '3.12'
fail-fast: false