Skip to content

Remove package

Remove package #121

Workflow file for this run

name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:

Check failure on line 9 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Rust

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: [dependencies]
steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install packages
run: |
sudo apt-get update
sudo apt-get -y install libfontconfig-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --features "bevy serde"
nightly-build:
runs-on: ubuntu-latest
needs: [dependencies]
steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Install packages
run: |
sudo apt-get update
sudo apt-get -y install libfontconfig-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --features "bevy serde async"