Skip to content

Commit

Permalink
updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
splurf committed Sep 21, 2023
1 parent 0bfbf06 commit cfb36cf
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/rust-linux.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust-linux

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

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
21 changes: 21 additions & 0 deletions .github/workflows/rust-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust-macos

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

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
21 changes: 21 additions & 0 deletions .github/workflows/rust-windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust-windows

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

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: windows-latest

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

0 comments on commit cfb36cf

Please sign in to comment.