Skip to content

Commit

Permalink
Merge pull request #1 from alexrudy/gh-actions
Browse files Browse the repository at this point in the history
Add github actions
  • Loading branch information
alexrudy authored Mar 30, 2024
2 parents 8836ef2 + 02eb768 commit f0bebca
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
- package-ecosystem: "cargo" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
88 changes: 88 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
on:
pull_request:
branches: [main]
push:
branches: [main]

name: CI

jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
toolchain:
- stable
- nightly
- beta
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- name: Run cargo build
run: cargo build --release --target ${{ matrix.target }}

test:
name: Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable

- name: Build cargo tests
run: cargo test --all-features --no-run

- name: Run cargo test
run: cargo test --all-features

lints:
name: Lints
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy

- name: Run cargo fmt
run: cargo fmt --all -- --check

- name: Run cargo clippy
uses: actions-rs/clippy-check@v1
if: github.repository_owner == 'alexrudy'
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features -- -D warnings

docs:
name: Docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy

- name: cargo doc
env:
RUSTDOCFLAGS: "-Dwarnings"
run: cargo doc --all-features --no-deps

0 comments on commit f0bebca

Please sign in to comment.