mirror of
https://github.com/sogou/workflow.git
synced 2026-02-08 01:33:17 +08:00
20 lines
266 B
YAML
20 lines
266 B
YAML
name: ci build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: make
|
|
- name: make tutorial
|
|
run: make tutorial
|