Skip to content

switch CI from Travis CI to Github Actions #3

switch CI from Travis CI to Github Actions

switch CI from Travis CI to Github Actions #3

Workflow file for this run

---
name: Tests
on:
push:
pull_request:
types: [opened]
schedule:
- cron: '16 19 24 * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: run tests
run: cd test && ./run-tests.sh
- name: shellcheck
uses: ludeeus/action-shellcheck@2.0.0