22 lines
No EOL
467 B
YAML
22 lines
No EOL
467 B
YAML
name: Gitea Actions Test
|
|
run_name: ${{ gitea.actor }} is testing out Gitea Actions
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, reopened, edited, review_requested, synchronize]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: https://github.com/actions/checkout@v3
|
|
|
|
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
|
|
|
- name: Install flip-link
|
|
run: cargo install flip-link
|
|
|
|
- name: Build
|
|
run: cargo build |