Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Booplicate committed Aug 12, 2022
2 parents 5557057 + 1b516cc commit 9c88ba8
Show file tree
Hide file tree
Showing 22 changed files with 1,884 additions and 572 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libpango1.0-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev libpng-dev libgl1-mesa-dev libglu1-mesa-dev
sudo apt install -y --no-install-recommends libasound2-dev pkg-config
- name: Checkout
uses: actions/checkout@v3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:

steps:
- name: Install Dependencies
if: runner.os == 'Linux'
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install -y libpango1.0-dev libx11-dev libxext-dev libxft-dev libxinerama-dev libxcursor-dev libxrender-dev libxfixes-dev libpng-dev libgl1-mesa-dev libglu1-mesa-dev
fi
sudo apt install -y --no-install-recommends libasound2-dev pkg-config
- name: Checkout
uses: actions/checkout@v3

- name: Check cache
- name: Check Cache
uses: actions/cache@v3
with:
path: |
Expand All @@ -39,10 +39,10 @@ jobs:
target/
key: ${{ runner.os }}-cargo-check-${{ hashFiles('**/Cargo.lock') }}

- name: Cargo check
- name: Cargo Check
run: |
cargo check --verbose --no-default-features
- name: Cargo test
- name: Cargo Test
run: |
cargo test --verbose --no-default-features
Loading

0 comments on commit 9c88ba8

Please sign in to comment.