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 9ee6776
Showing 1 changed file with 29 additions and 29 deletions.
58 changes: 29 additions & 29 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,43 +7,43 @@ env:

jobs:
build:

runs-on: ubuntu-latest

needs: [dependencies]

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

needs: [dependencies]

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 9ee6776

Please sign in to comment.