mirror of
https://github.com/ETLCPP/etl.git
synced 2026-04-30 19:09:10 +08:00
Merge pull request #1 from finger42/github-actions
Create first Github actions file
This commit is contained in:
commit
2dd0fe80a8
22
.github/workflows/main.yml
vendored
Normal file
22
.github/workflows/main.yml
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
name: CI
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Setup cmake
|
||||
run: cmake -DBUILD_TESTS=ON ./
|
||||
|
||||
- name: Compile
|
||||
run: make
|
||||
|
||||
- name: Run tests
|
||||
run: ./test/etl_tests
|
||||
Loading…
x
Reference in New Issue
Block a user