aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/ci.yml
blob: a80c43d9031c8a4eff2cd31da4640fc6ba2772f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Build and test

on:
  push:
  pull_request:

env: 
  CARGO_TERM_COLOR: always

jobs:
  build_and_test:
    name: build_and_test
    strategy:
      matrix:
        toolchain:
          - 1.75.0 # MSRV
          - 1.81.0
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
      - run: rustup component add clippy
      - run: cargo build --verbose
      - run: cargo clippy -- --deny warnings
      - run: cargo clippy --tests -- --deny warnings
      - run: cargo test

# vim: ts=2 sw=2 expandtab
bues.ch cgit interface