Update hoomd-example.py #267
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: test | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- trunk | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
env: | |
CARGO_TERM_COLOR: always | |
ROW_COLOR: always | |
CLICOLOR: 1 | |
RUST_LATEST_VERSION: 1.81.0 | |
jobs: | |
unit_test: | |
name: Unit test [${{ matrix.mode }}-rust-${{ matrix.rust }}-${{ matrix.os }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- macos-14 | |
rust: | |
# Oldest supported version of rust | |
- 1.77.2 | |
- 1.81.0 | |
mode: | |
- debug | |
include: | |
# Add a release build on linux with the latest version of rust | |
- os: ubuntu-22.04 | |
rust: 1.81.0 | |
mode: release | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Update rust | |
run: rustup install ${{ matrix.rust }} --no-self-update && rustup default ${{ matrix.rust }} | |
- name: Check rust installation | |
run: rustc -vV | |
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-rust-${{ matrix.rust }}-cargo-unit-test-${{ matrix.mode }}-${{ hashFiles('**/Cargo.lock') }} | |
- name: Build | |
run: cargo build ${{ matrix.mode == 'release' && '--release' || '' }} --verbose | |
- name: Run tests | |
run: cargo test ${{ matrix.mode == 'release' && '--release' || '' }} --verbose | |
execute_tutorials: | |
name: Execute tutorials | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Update rust | |
run: rustup install "$RUST_LATEST_VERSION" --no-self-update && rustup default "$RUST_LATEST_VERSION" | |
- name: Check rust installation | |
run: rustc -vV | |
- uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2 | |
with: | |
path: | | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-rust-${{ env.RUST_LATEST_VERSION }}-cargo-execute-tutorials-${{ hashFiles('**/Cargo.lock') }} | |
- name: Install | |
run: cargo install --path . --locked --verbose | |
- name: Run hello.sh | |
run: bash hello.sh | |
working-directory: doc/src/guide/tutorial | |
env: | |
ROW_YES: "true" | |
- name: Run group.sh | |
run: bash group.sh | |
working-directory: doc/src/guide/tutorial | |
env: | |
ROW_YES: "true" | |
# The signac test requires python | |
- name: Set up Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: "3.12" | |
- name: Set up Python environment | |
uses: glotzerlab/workflows/setup-uv@1747bc5c994ec280440dd051f2928791407692c8 # 0.5.1 | |
with: | |
lockfile: ".github/workflows/signac-requirements.txt" | |
- name: Run signac.sh | |
run: bash signac.sh | |
working-directory: doc/src/guide/python | |
env: | |
ROW_YES: "true" | |
build_documentation: | |
name: Build documentation | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up mdbook | |
uses: glotzerlab/workflows/setup-mdbook@1747bc5c994ec280440dd051f2928791407692c8 # 0.5.1 | |
- name: Build documentation | |
run: mdbook build doc | |
env: | |
RUST_LOG: "mdbook=info" | |
- name: Check links | |
uses: lycheeverse/lychee-action@7cd0af4c74a61395d455af97419279d86aafaede # v2.0.2 | |
with: | |
args: -n . | |
fail: true | |
check_licenses: | |
name: Check licenses | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up cargo-bundle-licenses | |
uses: glotzerlab/workflows/setup-cargo-bundle-licenses@1747bc5c994ec280440dd051f2928791407692c8 # 0.5.1 | |
- name: Check bundled licenses | |
run: cargo bundle-licenses --format yaml --output CI.yaml --previous THIRDPARTY.yaml --check-previous | |
tests_complete: | |
name: All tests | |
if: always() | |
needs: [unit_test, execute_tutorials, build_documentation,check_licenses] | |
runs-on: ubuntu-latest | |
steps: | |
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}' | |
- name: Done | |
run: exit 0 |