Add api docs #82
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
ubuntu: | |
runs-on: ubuntu-latest | |
container: | |
image: ubuntu:${{ matrix.version }} | |
strategy: | |
matrix: | |
version: ["20.04", "22.04", "24.04", "24.10", "25.04"] | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
TZ: Etc/UTC | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install -qy librrd-dev curl build-essential pkg-config libclang-dev | |
- name: Quick check | |
uses: ./.github/actions/quick-check | |
fedora: | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:${{ matrix.version }} | |
strategy: | |
matrix: | |
version: ["39", "40", "41", "42"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
dnf group install -qy --refresh c-development | |
dnf install -qy rrdtool-devel curl clang | |
- name: Quick check | |
uses: ./.github/actions/quick-check |