From 8542890622e9f1b75ed607b7bc4bff5481c8aa87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kuras?= Date: Thu, 22 Feb 2024 15:39:48 +0100 Subject: [PATCH] Test GH Action --- .github/workflows/test.yml | 33 +++++++++++++++++++++++++++++++++ src/section-4-best-practices | 1 + 2 files changed, 34 insertions(+) create mode 100644 .github/workflows/test.yml create mode 100644 src/section-4-best-practices diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..fb32474 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,33 @@ +name: Verify +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Install mdbook + run: | + mkdir mdbook + curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.14/mdbook-v0.4.14-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook + echo `pwd`/mdbook >> $GITHUB_PATH + - name: Update dependencies + run: sudo apt update && sudo apt upgrade -y + - name: Install plantuml + run: sudo apt-get install plantuml + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: stable + - name: Install mdbook-plantuml + uses: actions-rs/cargo@v1 + with: + command: install + args: mdbook-plantuml + - name: Test build + run: mdbook build + diff --git a/src/section-4-best-practices b/src/section-4-best-practices new file mode 100644 index 0000000..9380e37 --- /dev/null +++ b/src/section-4-best-practices @@ -0,0 +1 @@ +# Section:4 Best Practices