Skip to content

build(deps): bump cc from 1.2.9 to 1.2.10 #70

build(deps): bump cc from 1.2.9 to 1.2.10

build(deps): bump cc from 1.2.9 to 1.2.10 #70

Workflow file for this run

name: CI Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Upload dapper binary
uses: actions/upload-artifact@v4
with:
name: dapper-binary-${{ runner.os }}
path: |
target/debug/dapper${{ matrix.os == 'windows-latest' && '.exe' || '' }}
- name: Run tests
run: cargo test --verbose
clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Clippy
run: cargo clippy -- -D warnings
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check formatting
run: cargo fmt -- --check
python-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
working-directory: python
- name: Run pytest
run: python -m pytest
working-directory: python