mirror of
https://github.com/tmux/tmux.git
synced 2024-11-14 16:18:48 +00:00
23 lines
351 B
YAML
23 lines
351 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Environment
|
|
run: sudo apt-get update && sudo apt-get install -y <依赖包名称>
|
|
|
|
- name: Build
|
|
run: make
|
|
|
|
- name: Test
|
|
run: make test
|