Skip to content

Removing tests from pipeline #3

Removing tests from pipeline

Removing tests from pipeline #3

Workflow file for this run

name: Rust Build Linux Test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Debian
run: cargo install cargo-deb
run: cargo build --release --verbose

Check failure on line 21 in .github/workflows/rust.yml

View workflow run for this annotation

GitHub Actions / Rust Build Linux Test

Invalid workflow file

The workflow is not valid. .github/workflows/rust.yml (Line: 21, Col: 7): 'run' is already defined .github/workflows/rust.yml (Line: 22, Col: 7): 'run' is already defined
run: cargo deb
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/release/debian
publish_branch: gh-pages
force_orphan: true