Skip to content

Commit

Permalink
Fix typo in CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasKalbertodt committed Jun 18, 2021
1 parent 56bd7b8 commit 67ee23c
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 21 deletions.
4 changes: 2 additions & 2 deletions ci/check-basic-style.sh → .github/check-basic-style.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ else
ERROR=1
fi

## windows and mac OS line endings =======================
## tab characters =======================
echo ""
echo "=== Searching for files with windows/macOS line endings================="
echo "=== Searching for files with tab characters ================="

FOUNDTAB=0
for f in $(find $FOLDER -regex $FILES -not -regex $EXCLUDE); do
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on: [pull_request, push]

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: --deny warnings

jobs:
style:
name: Check basic style
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: ./.github/check-basic-style.sh

check:
name: 'Build & test'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2

- run: cargo build
- run: cargo test
- run: cargo doc

- run: cargo build --features="derive serde"
- run: cargo test --features="derive serde"
- run: cargo doc --features="derive serde"
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit 67ee23c

Please sign in to comment.