name: CI on: [push] jobs: build: runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v1 - name: Prepare VM run: | unset LANG sudo apt update -qq sudo LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php -y sudo apt-get -qq purge graphviz* redis* sudo apt-get install -qq git python3-setuptools python3-dev python3-apt python3-wheel python3-pip ccze tree sudo apt-get -qq autoremove --purge sudo mkdir -p /etc/mysql/conf.d echo -e '[client]\nuser = root\npassword = root\n' | sudo tee /etc/mysql/conf.d/my.cnf sudo python3 setup.py sdist bdist_wheel - name: Install WordOps run: sudo timeout 1800 bash install --travis - name: Run tests run: sudo timeout 1800 bash tests/travis.sh --actions