Skip to content

asdff

asdff #9

Workflow file for this run

name: CI
on:
push:
branches:
- develop
- pk-actions
workflow_dispatch:
schedule:
- cron: "0 12 * * *"
env:
python_bld_ver: 3.9
ubuntu_bld: ubuntu-20.04
mac_bld: macOS-13
windows_bld: windows-2022
ubuntu_test: ubuntu-latest
mac_test: macOS-latest
windows_test: windows-latest
jobs:
bld:
strategy:
matrix:
include:
- name: linux_release_64
image: ${{ env.ubuntu_bld }}

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 27, Col: 20): Unrecognized named-value: 'env'. Located at position 1 within expression: env.ubuntu_bld .github/workflows/ci.yml (Line: 32, Col: 20): Unrecognized named-value: 'env'. Located at position 1 within expression: env.ubuntu_bld
asm: "-asm"
options: "-release_64"
artifact_name: "libebm_ubuntu_release_64"
- name: linux_debug_64
image: ${{ env.ubuntu_bld }}
asm: ""
options: "-debug_64"
artifact_name: "libebm_ubuntu_debug_64"
runs-on: ${{ matrix.image }}
steps:
- name: Check out repository
uses: actions/checkout@v2