1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-06-02 04:46:13 +02:00
youki/.github/workflows/main.yml

79 lines
2.1 KiB
YAML
Raw Normal View History

2021-04-04 03:54:09 +02:00
on:
push:
2021-04-04 03:54:09 +02:00
branches:
- main
pull_request:
2021-04-04 03:54:09 +02:00
branches:
- main
jobs:
2021-07-11 09:20:53 +02:00
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: rustup component add rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
2021-04-29 10:34:23 +02:00
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2021-06-18 15:49:40 +02:00
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: rustup component add clippy
- run: sudo apt-get -y update
- run: sudo apt-get install -y pkg-config libsystemd-dev libdbus-glib-1-dev
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
2021-04-29 10:34:23 +02:00
- name: Build
2021-06-07 14:04:28 +02:00
run: ./build.sh
2021-04-29 10:34:23 +02:00
- name: Run tests
run: cargo test
2021-07-05 22:42:58 +02:00
- name: Run doc tests
run: cargo test --doc
2021-04-29 10:34:23 +02:00
integration_tests:
2021-04-04 03:54:09 +02:00
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
2021-06-18 15:49:40 +02:00
- uses: actions/cache@v2
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: sudo apt-get -y update
- run: sudo apt-get install -y pkg-config libsystemd-dev libdbus-glib-1-dev
2021-06-07 14:04:28 +02:00
- name: Build
run: ./build.sh
2021-04-04 03:54:09 +02:00
- uses: actions/setup-go@v2
with:
go-version: "1.11.0"
2021-04-29 10:34:23 +02:00
- name: Run intetgration tests
run: ./integration_test.sh