diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..3e25bed6 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,57 @@ +name: CI + +on: + pull_request: + push: + branches: + - master + +env: + RUSTFLAGS: -Dwarnings + +jobs: + build_and_test: + name: Build and test + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, macOS-latest, windows-latest] + rust: [stable] + + steps: + - uses: actions/checkout@master + + - name: Install ${{ matrix.rust }} + uses: actions-rs/toolchain@v1 + with: + toolchain: ${{ matrix.rust }} + override: true + + - name: check + uses: actions-rs/cargo@v1 + with: + command: check + args: --all --bins --examples + + - name: tests + uses: actions-rs/cargo@v1 + with: + command: test + args: --all + + check_fmt_and_docs: + name: Checking fmt and docs + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + components: rustfmt, clippy + override: true + + - name: fmt + run: cargo fmt --all -- --check + + - name: Docs + run: cargo doc \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 218d7f9c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: rust - -rust: - - stable - -sudo: false - -notifications: - email: - on_success: never - on_failure: always - -script: - - cargo test - - cargo test --no-default-features - - cargo doc --no-deps - - rustdoc --test README.md -L target/debug - -after_success: - - curl https://mvdnes.github.io/rust-docs/travis-doc-upload.sh | bash diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 67321b4b..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,44 +0,0 @@ -# Appveyor configuration template for Rust using rustup for Rust installation -# https://github.com/starkat99/appveyor-rust - -os: Visual Studio 2015 - -environment: - matrix: - - # Stable 64-bit MSVC - - channel: stable - target: x86_64-pc-windows-msvc - # Stable 32-bit MSVC - - channel: stable - target: i686-pc-windows-msvc - # Stable 64-bit GNU - - channel: stable - target: x86_64-pc-windows-gnu - # Stable 32-bit GNU - - channel: stable - target: i686-pc-windows-gnu - -install: - - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init -yv --default-toolchain %channel% --default-host %target% - - set PATH=%PATH%;%USERPROFILE%\.cargo\bin - - ps: | - if ($env:target -like "*-gnu" -And $env:target -like "x86_64-*") { - Start-FileDownload "http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/5.1.0/threads-win32/seh/x86_64-5.1.0-release-win32-seh-rt_v4-rev0.7z/download" -FileName mingw64.7z - 7z x -oC:\ mingw64.7z > $null - $env:path = "C:\mingw64\bin;" + $env:path - gcc --version - } - elseif ($env:target -like "*-gnu") { - $env:path = "C:\mingw\bin;" + $env:path - gcc --version - } - - rustc -vV - - cargo -vV - -build: false - -test_script: - - cargo test - - cargo test --no-default-features