mirror of https://github.com/aya-rs/aya
parent
69041954cb
commit
16b89fbe72
@ -0,0 +1,33 @@
|
|||||||
|
name: Build aya-bpf
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
- ci
|
||||||
|
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- uses: actions-rs/toolchain@v1
|
||||||
|
with:
|
||||||
|
toolchain: nightly
|
||||||
|
|
||||||
|
- uses: Swatinem/rust-cache@v1
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cargo +nightly build --verbose
|
||||||
|
|
||||||
|
- name: Run tests
|
||||||
|
run: RUST_BACKTRACE=full cargo +nightly test --verbose
|
@ -1,4 +1,4 @@
|
|||||||
name: Build
|
name: Build aya
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
Loading…
Reference in New Issue