Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GitHub actions docker #26

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
on: [pull_request]

name: Rust workflow for Arrow client

jobs:
ci:
name: CI
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

- name: Fmt
id: fmt
uses: angelcam/actions-rust@master
with:
command: fmt
args: --all -- --check

- name: Build
id: build
uses: angelcam/actions-rust@master
with:
command: build
args: --all-features --release

- name: Test
id: test
uses: angelcam/actions-rust@master
with:
command: test
args: --all-features

- name: Clippy
id: clippy
uses: angelcam/actions-rust@master
with:
command: clippy
args: -- -D warnings

- name: Audit
id: audit
uses: angelcam/actions-rust@master
with:
command: audit

- name: Udeps
id: udeps
uses: angelcam/actions-rust@master
with:
command: udeps
toolchain: +nightly
81 changes: 0 additions & 81 deletions .github/workflows/tests.yml

This file was deleted.