tmux/workflows/ci.yml

23 lines
351 B
YAML
Raw Normal View History

2024-03-18 01:43:06 +00:00
name: CI
2024-03-18 01:40:40 +00:00
2024-03-18 01:43:06 +00:00
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