I don't even know

This commit is contained in:
Uttarayan Mondal
2021-03-10 00:14:04 +05:30
parent feba099ed2
commit 20b52dbdb1
4 changed files with 10 additions and 60 deletions
-37
View File
@@ -1,37 +0,0 @@
name: Documentation
on:
push:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install latest toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Build Docs
run: cargo doc --color=always
- name: Copy docs
run: |
mv docs/index.html ./
rm -rf docs
cp -r target/doc ./docs
mv index.html docs/
- name: Push changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add docs
git commit -am "Generated docs from github-actions[bot]"
git push
-22
View File
@@ -1,22 +0,0 @@
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@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
-1
View File
@@ -1,3 +1,2 @@
/target
Cargo.lock
index.html
+10
View File
@@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML Meta Tag</title>
<meta http-equiv = "refresh" content = "0; url = https://uttarayan21.github.io/ntext-rs/ntext/index.html" />
</head>
<body>
<p>Redirecting to documentation</p>
</body>
</html>