Add support for Julia lang #25
Workflow file for this run
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: CI Pipeline | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
push: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '2.6' | |
- name: Install dependencies | |
run: | | |
sudo apt-get install libpcre3 libpcre3-dev libmagic-dev gperf gcc ragel swig | |
gem install test-unit | |
- name: Run tests | |
run: '${{github.workspace}}/build tests' |