Skip to content

Use ANNIS color for navigation bar #118

Use ANNIS color for navigation bar

Use ANNIS color for navigation bar #118

Workflow file for this run

on:
push:
name: Rust
jobs:
format:
name: Format Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/[email protected]
- uses: mbrobbel/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
static_code_analysis:
name: Static code analysis
needs: format
runs-on: ubuntu-latest
steps:
- uses: actions-rust-lang/[email protected]
with:
components: clippy
- uses: actions/checkout@v3
- name: Check code without default features
run: cargo check --no-default-features
- name: Check with clippy with all features enabled
run: cargo clippy --all-features -- -D warnings
test_linux:
name: Execute automated tests on Ubuntu Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/[email protected]
with:
toolchain: stable
- uses: Swatinem/[email protected]
- uses: nanasess/setup-chromedriver@v2
- name: Start chromedriver for tests
run: |
export DISPLAY=:99
chromedriver --port=4444 &
sudo Xvfb -ac :99 -screen 0 1280x1024x24 > /dev/null 2>&1 &
- run: cargo test --all-features --verbose