Skip to content

Commit

Permalink
Remove package
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeloof committed Jan 1, 2025
1 parent c6473d5 commit 3ff3858
Showing 1 changed file with 25 additions and 29 deletions.
54 changes: 25 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,43 +7,39 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install package
run: |
sudo apt-get update
sudo apt-get -y install fontconfig
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:
- 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

steps:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
- uses: actions/checkout@v3
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Install package
run: |
sudo apt-get update
sudo apt-get -y install fontconfig
sudo apt-get -y install libfontconfig-dev
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose --features "bevy serde async"
- 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"

0 comments on commit 3ff3858

Please sign in to comment.