Skip to content

Merge pull request #24 from Beepbop0/Beepbop0/check_opening_tun #80

Merge pull request #24 from Beepbop0/Beepbop0/check_opening_tun

Merge pull request #24 from Beepbop0/Beepbop0/check_opening_tun #80

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: checkout the code
uses: actions/checkout@v2
- name: Stable with rustfmt and clippy
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: rustfmt, clippy
- name: Debug build
uses: actions-rs/cargo@v1
with:
command: build
- name: Check format
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy