enacl/.github/workflows/setup.cue
Jesper Louis Andersen 46e2754a50 Disable macos again.
setup-beam only has ubuntu support...
2021-07-08 11:51:56 +02:00

21 lines
336 B
CUE

package actions
name: #Name & "build"
on: #On & {
push: branches: [
_branch,
]
pull_request: branches: [
_branch,
]
}
jobs: #Jobs
jobs: ci: {
name: "Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}"
"runs-on": "${{matrix.os}}"
strategy: matrix: {
otp_vsn: _versions.otp
os: ["ubuntu-latest"]
}
}