Skip to content

Commit

Permalink
Создание CI для проверки программы на разных ОС
Browse files Browse the repository at this point in the history
  • Loading branch information
syrtcevvi committed Dec 28, 2023
1 parent b88bb98 commit 65dc6cc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Building and testing on different OS

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

env:
CARGO_TERM_COLOR: always

jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 65dc6cc

Please sign in to comment.