try an opensuse image #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build OBS Service Cargo | |
on: [push, pull_request] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: opensuse/tumbleweed:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install dependencies and Rust | |
run: | | |
sudo zypper --non-interactive in libzstd-devel rustup | |
- name: Build | |
run: | | |
cargo update | |
cargo build --release --all-features | |
- name: Check formatting | |
run: | | |
cargo fmt -- --check | |
- name: Run sample projects to test | |
run: | | |
chmod +x runtests.sh | |
./runtests.sh |