Merge branch 'master' of github.com:exvacuum/occule
This commit is contained in:
commit
2a50eb9b40
4
.github/workflows/docs.yml
vendored
4
.github/workflows/docs.yml
vendored
@ -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
22
.github/workflows/rust.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user