2023-08-14 19:27:31 +00:00
|
|
|
name: Gitea Actions Test
|
|
|
|
run_name: ${{ gitea.actor }} is testing out Gitea Actions
|
2023-08-15 05:43:40 +00:00
|
|
|
|
2023-08-14 19:27:31 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
2023-08-15 06:10:33 +00:00
|
|
|
types: [opened, reopened, edited, review_requested, synchronize]
|
2023-08-15 05:43:40 +00:00
|
|
|
|
2023-08-14 19:27:31 +00:00
|
|
|
jobs:
|
2023-08-15 05:43:40 +00:00
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2023-08-15 08:28:35 +00:00
|
|
|
- uses: https://github.com/actions/checkout@v3
|
2023-08-15 08:30:57 +00:00
|
|
|
|
2023-08-15 08:56:48 +00:00
|
|
|
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
2023-08-15 06:20:28 +00:00
|
|
|
|
2023-08-15 08:38:28 +00:00
|
|
|
- name: Install flip-link
|
|
|
|
run: cargo install flip-link
|
|
|
|
|
2023-08-15 08:21:00 +00:00
|
|
|
- name: Build
|
|
|
|
run: cargo build
|