mirror of
https://github.com/kata-containers/cgroups-rs.git
synced 2026-08-05 02:13:23 +00:00
Migrate the CI from travis-ci to Github Actions
Because travis-ci.org will be shutting down. Signed-off-by: Tim Zhang <tim@hyper.sh>
This commit is contained in:
26
.github/workflows/bvt.yaml
vendored
Normal file
26
.github/workflows/bvt.yaml
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
name: BVT
|
||||
on: [pull_request]
|
||||
jobs:
|
||||
build:
|
||||
name: Build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Build
|
||||
run: make debug
|
||||
|
||||
fmt:
|
||||
name: Format Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: rustup component add rustfmt
|
||||
- run: make fmt
|
||||
test:
|
||||
name: Run Unit Test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: make test
|
||||
|
||||
Reference in New Issue
Block a user