Skip to content

CI

CI #731

Workflow file for this run

name: CI
defaults:
run:
# To load bashrc
shell: bash -ieo pipefail {0}
on:
push:
branches:
- main
- dev
pull_request:
schedule:
# run CI every day even if no PRs/merges occur
- cron: '0 12 * * *'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
# Used by ci_test.sh
- name: Install dependencies
run: |
python setup.py install
- name: Run Tests
run: |
bash scripts/test_algorand_contracts.sh