stort/.github/workflows/testing.yml

24 lines
406 B
YAML
Raw Normal View History

2024-08-08 01:31:49 +08:00
name: Testing
on:
push:
branches:
- "*"
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
2024-08-08 01:48:10 +08:00
container:
image: ubuntu:22.04
2024-08-08 01:31:49 +08:00
steps:
- name: Install Rust
run: |
apt update && apt install -y curl
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
. "$HOME/.cargo/env"
cargo --version