Skip to content

no message

no message #592

Workflow file for this run

---
name: Build Targets
on:
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip build]')"
name: ${{ matrix.version }}
runs-on: macos-13
strategy:
fail-fast: false
matrix:
version:
# - '3.9'
# - '3.10'
# - '3.11'
- '3.12'
steps:

Check failure on line 28 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 28
- name: Build target
run: |
# which python${{ matrix.version }}
apropos python
ls -l /usr/local/bin
python${{ matrix.version }} -c "import ssl; print(ssl.OPENSSL_VERSION); import urllib.request; urllib.request.urlopen('https://downloads.xiph.org/releases/opus/opus-1.5.1.tar.gz')"
...