Action для тестирования

This commit is contained in:
2025-03-21 07:36:39 +04:00
parent f0a951ad38
commit aa2618c5f5
2 changed files with 24 additions and 1205 deletions

22
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,22 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose -p schedule_parser