Bump tungstenite from 0.13.0 to 0.20.1 #248
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
schedule: | |
- cron: '0 9 * * 1' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies (apt) | |
if: matrix.os == 'ubuntu-latest' | |
run: sudo apt-get install libsqlite3-dev libseccomp-dev libsodium-dev | |
- name: Install dependencies (brew) | |
if: matrix.os == 'macos-latest' | |
run: brew install pkg-config libsodium | |
- name: Build (sn0int) | |
run: cargo build --verbose | |
- name: Build (common) | |
run: cd sn0int-common && cargo build --verbose | |
- name: Build (std) | |
run: cd sn0int-std && cargo build --verbose | |
- name: Build (examples) | |
run: cargo build --verbose --examples | |
- name: Run tests (sn0int) | |
run: cargo test --verbose | |
- name: Run tests (sn0int, --ignored) | |
run: cargo test --verbose -- --ignored | |
- name: Run tests (common) | |
run: cd sn0int-common && cargo test --verbose | |
- name: Run tests (common, --ignored) | |
run: cd sn0int-common && cargo test --verbose -- --ignored | |
- name: Run tests (std) | |
run: cd sn0int-std && cargo test --verbose | |
- name: Run tests (std, --ignored) | |
run: cd sn0int-std && cargo test --verbose -- --ignored | |
notify: | |
# forks shouldn't notify | |
if: github.repository == 'kpcyrd/sn0int' | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- name: irc notify | |
uses: rectalogic/notify-irc@v1 | |
with: | |
server: irc.hackint.org | |
channel: "#sn0int" | |
nickname: github-ci | |
message: '${{ github.repository }}#${{ github.run_id }}(${{ github.event_name }}): ${{ github.ref }}: tests completed: ${{ needs.build.result }} (https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})' |