Skip to content

Bump version to 1.0.0 #43

Bump version to 1.0.0

Bump version to 1.0.0 #43

name: Cargo Build and Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Start SSH server
run: |
echo 'PUID=1001' > tests/server/.env
docker compose -f tests/server/compose.yml up -d
- name: Run tests
run: cargo test --verbose
build-and-test-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose