Skip to content

Commit

Permalink
Prepare github actions CI for use by homu.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmuizel committed Oct 31, 2021
1 parent b54d422 commit c599e49
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,34 @@ name: Rust

on:
push:
branches: [ master ]
branches: ["**"]
pull_request:
branches: [ master ]
branches: ["**"]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: macos-11.0

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11.0, macos-10.15]
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build_result:
name: homu build finished
runs-on: ubuntu-latest
needs:
- "build"
steps:
- name: Mark the job as successful
run: exit 0
if: success()
- name: Mark the job as unsuccessful
run: exit 1
if: "!success()"

0 comments on commit c599e49

Please sign in to comment.