libkernaux/.github/workflows/rust.yml

46 lines
1.2 KiB
YAML
Raw Normal View History

name: Rust
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
2022-06-13 07:02:05 +00:00
strategy:
matrix:
debug: ['--disable-debug', '--enable-debug']
2022-06-13 07:02:05 +00:00
packages:
2022-06-13 08:35:23 +00:00
- configure: ''
2022-06-13 07:02:05 +00:00
- configure: '--without-all'
cargo: '--no-default-features'
2022-06-13 08:35:23 +00:00
- configure: '--without-all --with-ntoa'
cargo: '--no-default-features --features ntoa'
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy
- name: autogen
run: ./autogen.sh
- name: configure
run: ./configure ${{matrix.debug}} ${{matrix.packages.configure}} CFLAGS='-O3'
- name: make
run: make
- name: install
run: sudo make install
2022-12-14 07:03:47 +00:00
- name: ldconfig
run: sudo ldconfig
2022-06-13 07:02:05 +00:00
- working-directory: bindings/rust
name: test
2022-06-13 08:29:52 +00:00
run: cargo test ${{matrix.packages.cargo}}
- working-directory: bindings/rust
name: clippy
run: cargo clippy
- working-directory: bindings/rust
name: fmt
run: cargo fmt --check