Skip to content

Commit

Permalink
Update and rename .github/workflows/main.yml to main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JaCzekanski authored Aug 28, 2019
1 parent 74e34b9 commit b75ce54
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on: [push]

jobs:
linux_clang6:
name: "Linux Clang6"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- run: ./.travis/linux/run-container.sh 6

linux_clang8:
name: "Linux Clang8"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- run: ./.travis/linux/run-container.sh 8

android:
name: "Android"
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- run: ./.travis/android/run-container.sh

macos:
name: "macOS"
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
- run: ./.travis/macos/install-dependencies.sh
- run: ./.travis/macos/build.sh

# TODO: Add Windows

0 comments on commit b75ce54

Please sign in to comment.