diff options
| author | pml68 <contact@pml68.dev> | 2025-06-26 11:41:52 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-06-26 11:41:52 +0200 |
| commit | 602565f98f3a22fa1c39e054c6a88b3c31a36599 (patch) | |
| tree | 8aea60f9cfdc48a8e04651a7e809bb70ef4bd712 /.github/workflows/ci.yml | |
| download | iced_material-602565f98f3a22fa1c39e054c6a88b3c31a36599.tar.gz | |
feat: initial commit
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/ci.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..283de2c --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +name: CI +on: [push, pull_request] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: hecrj/setup-rust-action@v2 + with: + components: clippy + - uses: actions/checkout@master + - name: Install dependencies + run: | + export DEBIAN_FRONTED=noninteractive + sudo apt-get -qq update + sudo apt-get install -y libxkbcommon-dev + - name: Check lints + run: cargo lint + test: + runs-on: ubuntu-latest + steps: + - uses: hecrj/setup-rust-action@v2 + - uses: actions/checkout@master + - name: Install dependencies + run: | + export DEBIAN_FRONTED=noninteractive + sudo apt-get -qq update + sudo apt-get install -y libxkbcommon-dev + - name: Run tests + run: cargo test --verbose |
