Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/mbolaric/pgs2srt
Browse files Browse the repository at this point in the history
  • Loading branch information
mbolaric committed Sep 28, 2024
2 parents c9527f1 + 02ce5c7 commit 6803ea2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Rust

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-24.04

steps:
- name: Install Deps
run: |
sudo apt update
sudo apt install build-essential
sudo apt install curl
sudo apt install pkg-config
sudo apt install clang
sudo apt install libleptonica-dev
sudo apt install libtesseract-dev
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

0 comments on commit 6803ea2

Please sign in to comment.