docs: configure gh-pages deployment
This commit is contained in:
parent
cd47baa934
commit
0697911b7c
4 changed files with 78 additions and 3 deletions
46
.github/workflows/docs.yml
vendored
Normal file
46
.github/workflows/docs.yml
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
||||||
|
name: docs
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: "pages"
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Show env
|
||||||
|
run: |
|
||||||
|
uname -a
|
||||||
|
ldd --version
|
||||||
|
- name: Install
|
||||||
|
run: |
|
||||||
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
|
||||||
|
rustup toolchain install nightly --allow-downgrade -c rustfmt
|
||||||
|
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
cd jay-config
|
||||||
|
cargo doc
|
||||||
|
- name: Setup Pages
|
||||||
|
uses: actions/configure-pages@v2
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-pages-artifact@v1
|
||||||
|
with:
|
||||||
|
path: './target/doc'
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v1
|
||||||
1
.github/workflows/rustfmt.yml
vendored
1
.github/workflows/rustfmt.yml
vendored
|
|
@ -5,6 +5,7 @@ on:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [ master ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
|
|
||||||
28
.github/workflows/test.yml
vendored
Normal file
28
.github/workflows/test.yml
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
name: test
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Show env
|
||||||
|
run: |
|
||||||
|
uname -a
|
||||||
|
ldd --version
|
||||||
|
- name: Install
|
||||||
|
run: |
|
||||||
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
|
||||||
|
rustup toolchain install nightly --allow-downgrade -c rustfmt
|
||||||
|
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
|
||||||
|
- name: Test
|
||||||
|
run: cargo +nightly test
|
||||||
|
|
@ -86,21 +86,21 @@ impl InputDevice {
|
||||||
|
|
||||||
/// Sets whether tap-to-click is enabled for this device.
|
/// Sets whether tap-to-click is enabled for this device.
|
||||||
///
|
///
|
||||||
/// See https://wayland.freedesktop.org/libinput/doc/latest/tapping.html
|
/// See <https://wayland.freedesktop.org/libinput/doc/latest/tapping.html>
|
||||||
pub fn set_tap_enabled(self, enabled: bool) {
|
pub fn set_tap_enabled(self, enabled: bool) {
|
||||||
get!().set_input_tap_enabled(self, enabled);
|
get!().set_input_tap_enabled(self, enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets whether tap-and-drag is enabled for this device.
|
/// Sets whether tap-and-drag is enabled for this device.
|
||||||
///
|
///
|
||||||
/// See https://wayland.freedesktop.org/libinput/doc/latest/tapping.html
|
/// See <https://wayland.freedesktop.org/libinput/doc/latest/tapping.html>
|
||||||
pub fn set_drag_enabled(self, enabled: bool) {
|
pub fn set_drag_enabled(self, enabled: bool) {
|
||||||
get!().set_input_drag_enabled(self, enabled);
|
get!().set_input_drag_enabled(self, enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Sets whether drag lock is enabled for this device.
|
/// Sets whether drag lock is enabled for this device.
|
||||||
///
|
///
|
||||||
/// See https://wayland.freedesktop.org/libinput/doc/latest/tapping.html
|
/// See <https://wayland.freedesktop.org/libinput/doc/latest/tapping.html>
|
||||||
pub fn set_drag_lock_enabled(self, enabled: bool) {
|
pub fn set_drag_lock_enabled(self, enabled: bool) {
|
||||||
get!().set_input_drag_lock_enabled(self, enabled);
|
get!().set_input_drag_lock_enabled(self, enabled);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue