You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/rust.yml
+1-22Lines changed: 1 addition & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -10,34 +10,13 @@ on:
10
10
branches:
11
11
- main
12
12
pull_request:
13
-
types: [opened, synchronize, reopened]
13
+
types: [opened, synchronize, reopened]
14
14
branches:
15
15
- main
16
16
17
17
# A workflow run is made up of one or more jobs, which run in parallel by default
18
18
# Each job runs in a runner environment specified by runs-on
19
19
jobs:
20
-
# Unique identifier of our job (`job_id`)
21
-
test:
22
-
# Sets the name `Test` for the job, which is displayed in the GitHub UI
23
-
name: Test
24
-
# Containers must run in Linux based operating systems
25
-
runs-on: ubuntu-latest
26
-
steps:
27
-
# Downloads a copy of the code in your repository before running CI tests
28
-
- name: Check out repository code
29
-
# The uses keyword specifies that this step will run v3 of the actions/checkout action.
30
-
# This is an action that checks out your repository onto the runner, allowing you to run scripts or other actions against your code (such as build and test tools).
31
-
# You should use the checkout action any time your workflow will run against the repository's code.
32
-
uses: actions/checkout@v4
33
-
34
-
# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
0 commit comments