Skip to content

Commit

Permalink
u
Browse files Browse the repository at this point in the history
  • Loading branch information
pythcoiner committed Jan 3, 2025
1 parent 70aa377 commit 20482e6
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,29 @@ jobs:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
- name: dependencies
if: runner.os == 'Linux'
run: sudo apt-get update && sudo apt-get install -y libevent-dev
# - name: dependencies
# if: runner.os == 'Linux'
# run: sudo apt-get update && sudo apt-get install -y libevent-dev
- name: tests
run: cargo test --verbose --color always -- --nocapture
build:
needs: tests
strategy:
matrix:
toolchain:
- 1.75
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
profile: minimal
# - name: dependencies
# if: runner.os == 'Linux'
# run: sudo apt-get update && sudo apt-get install -y libevent-dev
- name: tests
run: cargo build --verbose --color always -- --nocapture

0 comments on commit 20482e6

Please sign in to comment.