Skip to content

Commit

Permalink
update ci file
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost committed Oct 7, 2023
1 parent e081cdd commit 449b041
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,26 @@
name: Rust
name: Laminar CI

on:
push:
branches:
- master

branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
test:
build:

name: Running on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: cargo test --verbose

0 comments on commit 449b041

Please sign in to comment.