Skip to content

ci: Move from Gitlab to Github #1711

ci: Move from Gitlab to Github

ci: Move from Gitlab to Github #1711

Workflow file for this run

name: calc
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
name: Cargo test
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Install Rust stable toolchain
uses: actions-rs/[email protected]
with:
profile: minimal
toolchain: stable
- name: Rust Cache
uses: Swatinem/rust-cache@82a92a6e8fbeee089604da2575dc567ae9ddeaab # v2.7.5
- name: Cargo test
uses: actions-rs/[email protected]
with:
command: test
args: --manifest-path=calc/Cargo.toml