19 lines
No EOL
315 B
YAML
19 lines
No EOL
315 B
YAML
name: Clixon CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: configure
|
|
run: ./configure --with-restconf=native
|
|
- name: make test # this is docker test
|
|
run: make test |