-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 1.08 KB
/
CI.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
on:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
concurrency:
group: "render"
cancel-in-progress: true
jobs:
render:
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive
- name: rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup.sh
sh rustup.sh --default-toolchain nightly --profile minimal -y
rustup component add rustfmt clippy --toolchain nightly
source "$HOME/.cargo/env"
rustup update
- name: render
run: |
cargo run --release -- --multiplier=4 --all
- name: commit
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
git add renders
git commit -m "render"
git push