muse2 2.1.0

A tool for running simulations of energy systems
Documentation
name: Update Rust toolchain
on:
  workflow_dispatch: # allows manual triggering
  schedule:
    - cron: "0 0 * * mon"

jobs:
  update-rust-toolchain:
    name: "Update rust-toolchain"
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v6
        with:
          persist-credentials: false
      - name: update rust toolchain
        uses: a-kenji/update-rust-toolchain@v1.1
        with:
          toolchain-path: ./rust-toolchain.toml
          token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}