Skip to content

fix new nightly lint too_long_first_doc_paragraph #2

fix new nightly lint too_long_first_doc_paragraph

fix new nightly lint too_long_first_doc_paragraph #2

Workflow file for this run

# this tests that the latest docker image works, and does linter checks
# linter checks happen here because docker images are faster than waiting for
# dependencies to install on GitHub Actions VMs
on: [push, pull_request]
name: Docker Tests
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: false
tags: mwatelescope/hyperbeam:latest
cache-from: type=gha
cache-to: type=gha,mode=max
check:
name: Docker Test and Release
needs: build
runs-on: ubuntu-latest
container: mwatelescope/hyperbeam:latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0
- run: /opt/cargo/bin/cargo check
- run: /opt/cargo/bin/cargo fmt --all -- --check
- run: /opt/cargo/bin/cargo clippy --all-targets --all-features -- -D warnings
- run: /opt/cargo/bin/cargo test --release
- run: /opt/cargo/bin/cargo test --no-default-features --release --features=cli
push:
needs: build # TODO: needs: check
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
push: true
tags: mwatelescope/hyperbeam:latest
cache-from: type=gha
cache-to: type=gha,mode=max