mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-14 15:54:08 +00:00
30 lines
877 B
YAML
30 lines
877 B
YAML
name: Chain Test
|
|
|
|
on:
|
|
pull_request:
|
|
branches: '*'
|
|
push:
|
|
branches: '*'
|
|
|
|
jobs:
|
|
test:
|
|
name: "Run basic test suite"
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: "Clone project repository"
|
|
uses: actions/checkout@v3
|
|
- name: "Install Python"
|
|
uses: actions/setup-python@v4
|
|
with:
|
|
python-version: '3.8'
|
|
- name: "Print Python version"
|
|
run: python3 --version
|
|
- name: "Get install script"
|
|
run: curl -o /opt/quick-install-linux.sh https://raw.githubusercontent.com/cerc-io/stack-orchestrator/main/scripts/quick-install-linux.sh
|
|
- name: "I love computers"
|
|
run: chmod +x /opt/quick-install-linux.sh
|
|
- name: "Install Stack Orchestrator"
|
|
run: CERC_SO_INSTALL_SKIP_PACKAGES=true /opt/quick-install-linux.sh -y
|
|
- name: "Print SO version"
|
|
run: laconic-so version
|