Change #12
1 changed files with 9 additions and 3 deletions
|
@ -11,10 +11,16 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- run: echo " The job was automatically triggered by a ${{ gitea.event_name }} event."
|
- name: Install stable toolchain
|
||||||
- run: echo " This job is now running on a ${{ runner.os }} server hosted by Gitea!"
|
uses: actions-rs/toolchain@v1
|
||||||
- run: echo " The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}."
|
with:
|
||||||
|
toolchain: stable
|
||||||
|
override: true
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
run: cargo build
|
run: cargo build
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
run: cargo test
|
run: cargo test
|
Loading…
Reference in a new issue