Skip to content

CI: Replace Travis CI with GitHub Actions for Linux. #3

CI: Replace Travis CI with GitHub Actions for Linux.

CI: Replace Travis CI with GitHub Actions for Linux. #3

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y tcl
- name: Run tests
run: |
make test
make examples-test