mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-20 13:54:08 +00:00
31 lines
725 B
YAML
31 lines
725 B
YAML
name: Second 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: "install so"
|
|
uses: supplypike/setup-bin@v3
|
|
with:
|
|
uri: 'https://github.com/cerc-io/stack-orchestrator/releases/latest/download/laconic-so'
|
|
name: 'laconic-so'
|
|
version: 'latest'
|
|
|
|
- name: "test it"
|
|
run: laconic-so version
|