File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ # Controls when the workflow will run
4
+ on :
5
+ # Triggers the workflow on push or pull request events but only for the master branch
6
+ push :
7
+ branches : [ tests ]
8
+ pull_request :
9
+ branches : [ tests ]
10
+
11
+ # Allows you to run this workflow manually from the Actions tab
12
+ workflow_dispatch :
13
+
14
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
15
+ jobs :
16
+
17
+ # This workflow contains a single job called "tests"
18
+ tests :
19
+ # The type of runner that the job will run on
20
+ runs-on : ubuntu-latest
21
+
22
+ # Steps represent a sequence of tasks that will be executed as part of the job
23
+ steps :
24
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
25
+ - uses : actions/checkout@v2
26
+
27
+ - uses : cachix/install-nix-action@v13
28
+ with :
29
+ nix_path : nixpkgs=channel:nixos-unstable
30
+
31
+ - run : nix-shell --argstr cmd "invoke test --in-nix" --argstr python python37 --argstr rfVersion 3.0.4
You can’t perform that action at this time.
0 commit comments