mirror of
https://github.com/openharmony/third_party_rust_pkg-config-rs.git
synced 2026-06-30 20:57:59 -04:00
Port basics of .travis.yml to GitHub Actions
"master doc to gh-pages" has not been ported yet for example, but having the basics work will certainly be better than having nothing.
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: ${{ matrix.rust }}
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
rust:
|
||||
- 1.30.0
|
||||
- stable
|
||||
- beta
|
||||
- nightly
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ matrix.rust }}
|
||||
default: true
|
||||
profile: minimal
|
||||
- run: rustup component add rustfmt-preview
|
||||
- name: cargo fmt --all -- --check if stable
|
||||
run: |
|
||||
if [ "${{ matrix.rust }}" = "stable" ]; then
|
||||
cargo fmt --all -- --check
|
||||
fi
|
||||
- run: |
|
||||
cargo build --verbose
|
||||
- run: |
|
||||
cargo test --verbose
|
||||
Reference in New Issue
Block a user