You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aya/.github/workflows/build-aya-bpf.yml

34 lines
509 B
YAML

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