Replace TravisCI with Github Actions #2
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: Run tests | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
TEST_ENV: [ubuntu-18.04-llvm-5.0, ubuntu-18.04-llvm-6.0, formatting] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Docker Compose | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y docker-compose | |
- name: Build and run tests | |
run: | | |
docker-compose build ${{ matrix.TEST_ENV }} | |
docker-compose run ${{ matrix.TEST_ENV }} | |
if [[ "${{ matrix.TEST_ENV }}" = *llvm-6.0 ]]; then | |
export VERSION="${{ github.sha }}"; | |
docker-compose build bindgen; | |
find . -name target | xargs sudo rm -rf; | |
scripts/docker-test.sh; | |
fi | |
- name: Check formatting | |
if: matrix.TEST_ENV == 'formatting' | |
run: | | |
clang-format --version | |
scripts/scalafmt --test | |
scripts/clangfmt --test |