docs: small textual corrections (#386) #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automatic tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
fast: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Run fast tests suite | |
run: make tests | |
full: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Run full tests suite | |
run: make tests-full | |
- name: "Report tests (TODO: replace to codacy)" | |
if: false | |
run: | | |
gcov unit.c | |
bash <(curl -s https://codecov.io/bash) | |
install_vm_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install 3bc vm | |
run: sudo bash -c "$(wget -qO- https://raw.githubusercontent.com/rodrigodornelles/3bc-lang/master/scripts/install_vm.sh || curl -fsSL https://raw.githubusercontent.com/rodrigodornelles/3bc-lang/master/scripts/install_vm.sh)" | |
- name: Run test | |
run: echo '7.0.2,1.0.1'| 3bc |