language: python
python:
- "2.7"
install: skip
script: python ./src/hello.py
matrix:
include:
- arch: arm64
os: linux
- arch: amd64
os: linux
Build Config
{
"matrix": {
"include": [
{
"os": "linux",
"arch": "arm64"
},
{
"os": "linux",
"arch": "amd64"
}
]
},
"python": [
"2.7"
],
"script": "python ./src/hello.py",
"install": "skip",
"language": "python"
}