Merge branch 'master' of github.com:exvacuum/occule

This commit is contained in:
Silas Bartha 2024-06-02 18:38:40 -04:00
commit 2a50eb9b40
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
2 changed files with 24 additions and 2 deletions

View File

@ -1,7 +1,7 @@
name: Docs
on:
push:
branches: [main]
branches: [master]
permissions:
contents: read
pages: write
@ -28,7 +28,7 @@ jobs:
- name: Build docs
run: cargo doc --no-deps
- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=aoc/index.html">' > target/doc/index.html
run: echo '<meta http-equiv="refresh" content="0;url=occule/index.html">' > target/doc/index.html
- name: Remove lock file
run: rm target/doc/.lock
- name: Upload artifact

22
.github/workflows/rust.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