Merge pull request #260 from dave-tucker/netlify

Add Netlify Config and Update README
pull/261/head
Alessandro Decina 2 years ago committed by GitHub
commit 41a27e3784
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
name: Build aya-bpf
name: build-aya-bpf
on:
push:

@ -1,4 +1,4 @@
name: Build aya
name: build-aya
on:
push:

@ -1,4 +1,4 @@
name: Aya test image
name: aya-test-image
on:
schedule:

@ -1,4 +1,4 @@
name: Lint
name: lint
on:
push:

@ -1,4 +1,4 @@
name: 'release'
name: release
on:
push:
tags:

@ -3,20 +3,36 @@
[![Crates.io][crates-badge]][crates-url]
![License][license-badge]
![Build status][build-badge]
[![Documentaiton][docs-badge]][docs-url]
[![Book][book-badge]][book-url]
[crates-badge]: https://img.shields.io/crates/v/aya.svg
[crates-badge]: https://img.shields.io/crates/v/aya.svg?style=for-the-badge&logo=rust
[crates-url]: https://crates.io/crates/aya
[license-badge]: https://img.shields.io/badge/license-MIT%2FApache--2.0-blue
[build-badge]: https://github.com/aya-rs/aya/actions/workflows/build-aya.yml/badge.svg
[docs-badge]: https://img.shields.io/badge/docs-website-blue.svg
[docs-url]: http://aya-rs.github.io/book/
[license-badge]: https://img.shields.io/badge/license-MIT%2FApache--2.0-blue?style=for-the-badge
[build-badge]: https://img.shields.io/github/workflow/status/aya-rs/aya/build-aya?style=for-the-badge&logo=github
[book-badge]: https://img.shields.io/badge/read%20the-book-9cf.svg?style=for-the-badge&logo=mdbook
[book-url]: http://aya-rs.github.io/book/
## API Documentation
[API docs][api-docs] | [Chat][chat-url] | [Aya-Related Projects][awesome-aya]
[![Unreleased Documentation][git-docs-badge]][git-api-docs] [![Documentaiton][api-docs-badge]][api-docs]
[git-docs-badge]: https://img.shields.io/badge/docs-unreleased-red.svg?style=for-the-badge&logo=docsdotrs
[git-api-docs]: https://aya-rs.netlify.app
[api-docs-badge]: https://img.shields.io/badge/docs-released-blue.svg?style=for-the-badge&logo=docsdotrs
[api-docs]: https://docs.rs/aya
## Community
[![Discord][discord-badge]][chat-url] [![Awesome][awesome-badge]][awesome-aya]
Join [the conversation on Discord][chat-url] to discuss anything related to Aya, or discover
and contribute to a list of [Awesome Aya][awesome-aya] projects.
[discord-badge]: https://img.shields.io/badge/Discord-chat-5865F2?style=for-the-badge&logo=discord
[chat-url]: https://discord.gg/xHW2cb2N6G
[awesome-aya]: https://github.com/aya-rs/awesome-aya
[awesome-badge]: https://img.shields.io/badge/Awesome-Aya-FC60A8?style=for-the-badge&logo=awesomelists
## Overview
@ -78,10 +94,6 @@ let cgroup = File::open("/sys/fs/cgroup/unified")?;
ingress.attach(cgroup, CgroupSkbAttachType::Ingress)?;
```
## Community
Join [the conversation on Discord][chat-url] to discuss anything related to aya.
## Contributing
Please see the [contributing guide](https://github.com/aya-rs/aya/blob/main/CONTRIBUTING.md).

@ -0,0 +1,7 @@
[build]
publish = "target/doc"
command = "rustup toolchain install nightly && cargo xtask docs"
[[redirects]]
from = "/"
to = "/aya"
Loading…
Cancel
Save