UI overhaul rebase
This commit is contained in:
25
dioxus-free-icons/.github/workflows/ci.yml
vendored
Normal file
25
dioxus-free-icons/.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Cargo Build & Test
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
pull_request:
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_and_test:
|
||||
name: Rust project - latest
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install the nightly toolchain
|
||||
uses: dtolnay/rust-toolchain@nightly
|
||||
- name: Install linux dependencies
|
||||
if: runner.os == 'Linux'
|
||||
run: |
|
||||
sudo apt update && sudo apt install build-essential libssl-dev pkg-config libglib2.0-dev libgtk-3-dev
|
||||
- run: cargo build --verbose
|
||||
- run: cargo test --verbose
|
||||
Reference in New Issue
Block a user